Gastos_casa %>%
dplyr::select(-Tiempo,-link) %>%
dplyr::select(fecha, gasto, monto, gastador,obs) %>% tail(30) %>%
knitr::kable(format = "markdown", size=12)
| fecha | gasto | monto | gastador | obs |
|---|---|---|---|---|
| 15/11/2023 | Comida | 4418 | Tami | Supermercado |
| 18/11/2023 | Comida | 53051 | Tami | Supermercado |
| 22/11/2023 | Comida | 7838 | Tami | Supermercado |
| 23/11/2023 | Comida | 31470 | Tami | Barritas Wild Soul |
| 27/11/2023 | Comida | 69098 | Tami | Supermercado |
| 28/11/2023 | Diosi | 52000 | Tami | Veterinaria (control + vacuna) |
| 1/12/2023 | Electricidad | 93256 | Andrés | NA |
| 1/12/2023 | Diosi | 168000 | Tami | Consulta vet + hospitalización + exámenes |
| 2/12/2023 | Comida | 83183 | Tami | Supermercado |
| 2/12/2023 | Farmacia | 36819 | Tami | Diolasa + Clotrimazol + Mulcatel + Propolgea |
| 7/12/2023 | Diosi | 30000 | Tami | Consulta Veterinaria |
| 8/12/2023 | Agua | 15080 | Andrés | NA |
| 9/12/2023 | Comida | 57905 | Tami | Supermercado |
| 9/12/2023 | Comida | 20614 | Tami | Fork pedido el 28/11 |
| 17/12/2023 | Comida | 40000 | Andrés | NA |
| 17/12/2023 | Comida | 8000 | Andrés | almuerzo |
| 17/12/2023 | VTR | 22000 | Andrés | NA |
| 17/12/2023 | Comida | 42000 | Andrés | piwen |
| 17/12/2023 | Comida | 48432 | Tami | Supermercado |
| 17/12/2023 | Enceres | 16400 | Tami | Incoludido |
| 19/12/2023 | Aporte Basureros | 10000 | Tami | NA |
| 22/12/2023 | Netflix | 8326 | Tami | NA |
| 22/12/2023 | Diosi | 14700 | Andrés | Antiparasitario |
| 24/12/2023 | Comida | 79633 | Tami | Supermercado |
| 24/12/2023 | Comida | 19950 | Andrés | Empanadas |
| 25/12/2023 | Uber | 5595 | Tami | NA |
| 27/12/2023 | Diosi | 22970 | Andrés | arena |
| 30/12/2023 | Comida | 50000 | Andrés | jumbo la litad de los 97 |
| 31/3/2019 | Comida | 9000 | Andrés | NA |
| 8/9/2019 | Comida | 24588 | Andrés | Super Lider |
#para ver las diferencias depués de la diosi
Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(gastador=ifelse(gastador=="Andrés",1,0)) %>%
dplyr::group_by(gastador, fecha,.drop = F) %>%
dplyr::summarise(gasto_media=mean(monto,na.rm=T)) %>%
dplyr::mutate(treat=ifelse(fecha>"2019-W26",1,0)) %>%
#dplyr::mutate(fecha_simp=lubridate::week(fecha)) %>%#después de diosi. Junio 24, 2019
dplyr::mutate(gastador_nombre=plyr::revalue(as.character(gastador), c("0" = "Tami", "1"="Andrés"))) %>%
assign("ts_gastos_casa_week_treat", ., envir = .GlobalEnv)
gplots::plotmeans(gasto_media ~ gastador_nombre, main="Promedio de gasto por gastador", data=ts_gastos_casa_week_treat,ylim=c(0,75000), xlab="", ylab="")
par(mfrow=c(1,2))
gplots::plotmeans(gasto_media ~ gastador_nombre, main="Antes de Diosi", data=ts_gastos_casa_week_treat[ts_gastos_casa_week_treat$treat==0,], xlab="", ylab="", ylim=c(0,70000))
gplots::plotmeans(gasto_media ~ gastador_nombre, main="Después de Diosi", data=ts_gastos_casa_week_treat[ts_gastos_casa_week_treat$treat==1,], xlab="", ylab="",ylim=c(0,70000))
library(ggiraph)
library(scales)
#if( requireNamespace("dplyr", quietly = TRUE)){
gg <- Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(gastador=ifelse(gastador=="Andrés",1,0)) %>%
dplyr::mutate(fecha_simp=tsibble::yearweek(fecha)) %>%
dplyr::mutate(fecha_week=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(treat=ifelse(fecha_week>"2019 W26",1,0)) %>%
dplyr::mutate(gastador_nombre=plyr::revalue(as.character(gastador), c("0" = "Tami", "1"="Andrés"))) %>%
# dplyr::mutate(week=as.Date(as.character(lubridate::floor_date(fecha, "week"))))%>%
#dplyr::mutate(fecha_week= lubridate::parse_date_time(fecha_week, c("%Y-W%V"),exact=T)) %>%
dplyr::group_by(gastador_nombre, fecha_simp) %>%
dplyr::summarise(monto_total=sum(monto)) %>%
dplyr::mutate(tooltip= paste0(substr(gastador_nombre,1,1),"=",round(monto_total/1000,2))) %>%
ggplot(aes(hover_css = "fill:none;")) +#, ) +
#stat_summary(geom = "line", fun.y = median, size = 1, alpha=0.5, aes(color="blue")) +
geom_line(aes(x = fecha_simp, y = monto_total, color=as.factor(gastador_nombre)),size=1,alpha=.5) +
ggiraph::geom_point_interactive(aes(x = fecha_simp, y = monto_total, color=as.factor(gastador_nombre),tooltip=tooltip),size = 1) +
#geom_text(aes(x = fech_ing_qrt, y = perc_dup-0.05, label = paste0(n)), vjust = -1,hjust = 0, angle=45, size=3) +
# guides(color = F)+
sjPlot::theme_sjplot2() +
geom_vline(xintercept = as.Date("2019-06-24"),linetype = "dashed") +
labs(y="Gastos (en miles)",x="Semanas y Meses", subtitle="Interlineado, incorporación de la Diosi; Azul= Tami; Rojo= Andrés") + ggtitle( "Figura 4. Gastos por Gastador") +
scale_y_continuous(labels = f <- function(x) paste0(x/1000)) +
scale_color_manual(name = "Gastador", values= c("blue", "red"), labels = c("Tami", "Andrés")) +
scale_x_yearweek(date_breaks = "1 month", minor_breaks = "1 week", labels=scales::date_format("%m/%y")) +
theme(axis.text.x = element_text(vjust = 0.5,angle = 35), legend.position='bottom')+
theme(
panel.border = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.line = element_line(colour = "black")
)
# x <- girafe(ggobj = gg)
# x <- girafe_options(x = x,
# opts_hover(css = "stroke:red;fill:orange") )
# if( interactive() ) print(x)
#}
tooltip_css <- "background-color:gray;color:white;font-style:italic;padding:10px;border-radius:10px 20px 10px 20px;"
#ggiraph(code = {print(gg)}, tooltip_extra_css = tooltip_css, tooltip_opacity = .75 )
x <- girafe(ggobj = gg)
x <- girafe_options(x,
opts_zoom(min = 1, max = 3), opts_hover(css =tooltip_css))
x
plot<-Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_week=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(month=as.Date(as.character(lubridate::floor_date(fecha, "month"))))%>%
dplyr::group_by(month)%>%
dplyr::summarise(gasto_total=sum(monto)/1000) %>%
ggplot2::ggplot(aes(x = month, y = gasto_total)) +
geom_point()+
geom_line(size=1) +
sjPlot::theme_sjplot2() +
geom_vline(xintercept = as.Date("2019-06-24"),linetype = "dashed") +
geom_vline(xintercept = as.Date("2019-03-23"),linetype = "dashed", color="red") +
labs(y="Gastos (en miles)",x="Meses/Año", subtitle="Interlineado, incorporación de la Diosi") +
ggtitle( "Figura. Suma de Gastos por Mes") +
scale_x_date(breaks = "1 month", minor_breaks = "1 month", labels=scales::date_format("%m/%y")) +
theme(axis.text.x = element_text(vjust = 0.5,angle = 45))
plotly::ggplotly(plot)
plot2<-Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_week=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(day=as.Date(as.character(lubridate::floor_date(fecha, "day"))))%>%
dplyr::group_by(day)%>%
summarise(gasto_total=sum(monto)/1000) %>%
ggplot2::ggplot(aes(x = day, y = gasto_total)) +
geom_line(size=1) +
sjPlot::theme_sjplot2() +
geom_vline(xintercept = as.Date("2019-06-24"),linetype = "dashed") +
geom_vline(xintercept = as.Date("2020-03-23"),linetype = "dashed", color="red") +
labs(y="Gastos (en miles)",x="Meses/Año", subtitle="Interlineado, incorporación de la Diosi") +
ggtitle( "Figura. Suma de Gastos por Día") +
scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=scales::date_format("%m/%y")) +
theme(axis.text.x = element_text(vjust = 0.5,angle = 45))
plotly::ggplotly(plot2)
tsData <- Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_week=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(day=as.Date(as.character(lubridate::floor_date(fecha, "day"))))%>%
dplyr::group_by(day)%>%
summarise(gasto_total=sum(monto))%>%
dplyr::mutate(covid=case_when(day>as.Date("2019-06-02")~1,TRUE~0))%>%
dplyr::mutate(covid=case_when(day>as.Date("2020-03-10")~covid+1,TRUE~covid))%>%
dplyr::mutate(covid=as.factor(covid))%>%
data.frame()
tsData_gastos <-ts(tsData$gasto_total, frequency=7)
mstsData_gastos <- forecast::msts(Gastos_casa$monto, seasonal.periods=c(7,30))
tsData_gastos = decompose(tsData_gastos)
#plot(tsData_Santiago, title="Descomposición del número de casos confirmados para Santiago")
forecast::autoplot(tsData_gastos, main="Descomposición de los Gastos Diarios")+
theme_bw()+ labs(x="Weeks")
tsdata_gastos_trend<-cbind(tsData,trend=as.vector(tsData_gastos$trend))%>% na.omit()
#tsData_gastos$trend
#Using the inputted variables, a Type-2 Sum Squares ANCOVA Lagged Dependent Variable model is fitted which estimates the difference in means between interrupted and non-interrupted time periods, while accounting for the lag of the dependent variable and any further specified covariates.
#Typically such analyses use Auto-regressive Integrated Moving Average (ARIMA) models to handle the serial dependence of the residuals of a linear model, which is estimated either as part of the ARIMA process or through a standard linear regression modeling process [9,17]. All such time series methods enable the effect of the event to be separated from general trends and serial dependencies in time, thereby enabling valid statistical inferences to be made about whether an intervention has had an effect on a time series.
#it uses Type-2 Sum Squares ANCOVA Lagged Dependent Variable model
#ITSA model da cuenta de observaciones autocorrelacionadas e impactos dinámicos mediante una regresión de deltas en rezagados. Una vez que se incorporan en el modelo, se controlan.
#residual autocorrelation assumptions
#TSA allows the model to account for baseline levels and trends present in the data therefore allowing us to attribute significant changes to the interruption
#RDestimate(all~agecell,data=metro_region,cutpoint = 21)
tsdata_gastos_trend<-cbind(tsData,trend=as.vector(tsData_gastos$trend))%>% na.omit()
itsa_metro_region_quar2<-
its.analysis::itsa.model(time = "day", depvar = "trend",data=tsdata_gastos_trend,
interrupt_var = "covid",
alpha = 0.05,no.plots = F, bootstrap = TRUE, Reps = 10000, print = F)
print(itsa_metro_region_quar2)
## [[1]]
## [1] "ITSA Model Fit"
##
## $aov.result
## Anova Table (Type II tests)
##
## Response: depvar
## Sum Sq Df F value Pr(>F)
## interrupt_var 8.5519e+08 2 8.0112 4e-04 ***
## lag_depvar 9.7010e+10 1 1817.5235 <2e-16 ***
## Residuals 3.4800e+10 652
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## $tukey.result
## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: stats::aov(formula = x$depvar ~ x$interrupt_var)
##
## $`x$interrupt_var`
## diff lwr upr p adj
## 1-0 7228.838 886.7422 13570.93 0.0207439
## 2-0 29660.521 23901.3692 35419.67 0.0000000
## 2-1 22431.683 19039.0833 25824.28 0.0000000
##
##
## $data
## depvar interrupt_var lag_depvar
## 2 19269.29 0 16010.00
## 3 24139.00 0 19269.29
## 4 23816.14 0 24139.00
## 5 26510.14 0 23816.14
## 6 23456.71 0 26510.14
## 7 24276.71 0 23456.71
## 8 18818.71 0 24276.71
## 9 18517.14 0 18818.71
## 10 15475.29 0 18517.14
## 11 16365.29 0 15475.29
## 12 12621.29 0 16365.29
## 13 12679.86 0 12621.29
## 14 13440.71 0 12679.86
## 15 15382.86 0 13440.71
## 16 13459.71 0 15382.86
## 17 14644.14 0 13459.71
## 18 13927.00 0 14644.14
## 19 22034.57 0 13927.00
## 20 20986.00 0 22034.57
## 21 20390.57 0 20986.00
## 22 22554.14 0 20390.57
## 23 21782.57 0 22554.14
## 24 22529.57 0 21782.57
## 25 24642.71 0 22529.57
## 26 17692.29 0 24642.71
## 27 19668.29 0 17692.29
## 28 28640.00 0 19668.29
## 29 28706.00 0 28640.00
## 30 28331.57 0 28706.00
## 31 25617.86 0 28331.57
## 32 27223.29 0 25617.86
## 33 31622.57 0 27223.29
## 34 32021.43 0 31622.57
## 35 33634.57 0 32021.43
## 36 30784.86 0 33634.57
## 37 34770.57 0 30784.86
## 38 38443.00 1 34770.57
## 39 35073.00 1 38443.00
## 40 31422.29 1 35073.00
## 41 30103.29 1 31422.29
## 42 19319.29 1 30103.29
## 43 27926.29 1 19319.29
## 44 30715.43 1 27926.29
## 45 31962.29 1 30715.43
## 46 39790.14 1 31962.29
## 47 39211.57 1 39790.14
## 48 44548.57 1 39211.57
## 49 49398.00 1 44548.57
## 50 41039.00 1 49398.00
## 51 34821.29 1 41039.00
## 52 29123.57 1 34821.29
## 53 21275.71 1 29123.57
## 54 28476.14 1 21275.71
## 55 24561.86 1 28476.14
## 56 20323.57 1 24561.86
## 57 25370.00 1 20323.57
## 58 26811.86 1 25370.00
## 59 27151.86 1 26811.86
## 60 27623.29 1 27151.86
## 61 22896.57 1 27623.29
## 62 41889.29 1 22896.57
## 63 44000.14 1 41889.29
## 64 38558.00 1 44000.14
## 65 43373.86 1 38558.00
## 66 49001.00 1 43373.86
## 67 61213.29 1 49001.00
## 68 58939.57 1 61213.29
## 69 42046.86 1 58939.57
## 70 39191.71 1 42046.86
## 71 42646.43 1 39191.71
## 72 36121.57 1 42646.43
## 73 30915.57 1 36121.57
## 74 20273.43 1 30915.57
## 75 23938.29 1 20273.43
## 76 19274.29 1 23938.29
## 77 21662.29 1 19274.29
## 78 15819.00 1 21662.29
## 79 18126.14 1 15819.00
## 80 17240.71 1 18126.14
## 81 16127.71 1 17240.71
## 82 13917.14 1 16127.71
## 83 15379.86 1 13917.14
## 84 19510.14 1 15379.86
## 85 24567.29 1 19510.14
## 86 25700.43 1 24567.29
## 87 25729.00 1 25700.43
## 88 26435.00 1 25729.00
## 89 31157.14 1 26435.00
## 90 29818.43 1 31157.14
## 91 30962.43 1 29818.43
## 92 28746.71 1 30962.43
## 93 27830.71 1 28746.71
## 94 28252.14 1 27830.71
## 95 28717.57 1 28252.14
## 96 21365.43 1 28717.57
## 97 24816.86 1 21365.43
## 98 16838.57 1 24816.86
## 99 15529.14 1 16838.57
## 100 13286.29 1 15529.14
## 101 13629.43 1 13286.29
## 102 14404.86 1 13629.43
## 103 19524.86 1 14404.86
## 104 18475.71 1 19524.86
## 105 22495.00 1 18475.71
## 106 22254.57 1 22495.00
## 107 24173.29 1 22254.57
## 108 27466.43 1 24173.29
## 109 24602.43 1 27466.43
## 110 20531.14 1 24602.43
## 111 20846.43 1 20531.14
## 112 23875.71 1 20846.43
## 113 36312.71 1 23875.71
## 114 34244.00 1 36312.71
## 115 36347.43 1 34244.00
## 116 39779.71 1 36347.43
## 117 42018.71 1 39779.71
## 118 39372.57 1 42018.71
## 119 33444.00 1 39372.57
## 120 29255.86 1 33444.00
## 121 31640.14 1 29255.86
## 122 29671.14 1 31640.14
## 123 31023.71 1 29671.14
## 124 39723.43 1 31023.71
## 125 39314.14 1 39723.43
## 126 38239.86 1 39314.14
## 127 34649.43 1 38239.86
## 128 36688.43 1 34649.43
## 129 42867.57 1 36688.43
## 130 42226.86 1 42867.57
## 131 32155.14 1 42226.86
## 132 33603.00 1 32155.14
## 133 37254.43 1 33603.00
## 134 33145.57 1 37254.43
## 135 31299.43 1 33145.57
## 136 30252.00 1 31299.43
## 137 26310.71 1 30252.00
## 138 27929.86 1 26310.71
## 139 27666.14 1 27929.86
## 140 25017.57 1 27666.14
## 141 27335.00 1 25017.57
## 142 25760.71 1 27335.00
## 143 18436.86 1 25760.71
## 144 21906.00 1 18436.86
## 145 19418.14 1 21906.00
## 146 22826.14 1 19418.14
## 147 23444.29 1 22826.14
## 148 25264.86 1 23444.29
## 149 25473.29 1 25264.86
## 150 27366.86 1 25473.29
## 151 28855.86 1 27366.86
## 152 32326.86 1 28855.86
## 153 27141.43 1 32326.86
## 154 26297.71 1 27141.43
## 155 23499.14 1 26297.71
## 156 30246.29 1 23499.14
## 157 39931.86 1 30246.29
## 158 38020.43 2 39931.86
## 159 35004.00 2 38020.43
## 160 40750.86 2 35004.00
## 161 42363.29 2 40750.86
## 162 46273.57 2 42363.29
## 163 41083.29 2 46273.57
## 164 35711.29 2 41083.29
## 165 41921.71 2 35711.29
## 166 60583.29 2 41921.71
## 167 63115.57 2 60583.29
## 168 61300.14 2 63115.57
## 169 57666.43 2 61300.14
## 170 55834.00 2 57666.43
## 171 58927.71 2 55834.00
## 172 57810.57 2 58927.71
## 173 48987.14 2 57810.57
## 174 52219.29 2 48987.14
## 175 56503.57 2 52219.29
## 176 56545.00 2 56503.57
## 177 64705.57 2 56545.00
## 178 53833.29 2 64705.57
## 179 50114.00 2 53833.29
## 180 39592.43 2 50114.00
## 181 29907.29 2 39592.43
## 182 33923.29 2 29907.29
## 183 45489.00 2 33923.29
## 184 44866.29 2 45489.00
## 185 51680.57 2 44866.29
## 186 58257.00 2 51680.57
## 187 70600.57 2 58257.00
## 188 76648.00 2 70600.57
## 189 69430.14 2 76648.00
## 190 69651.57 2 69430.14
## 191 77745.14 2 69651.57
## 192 72795.86 2 77745.14
## 193 67670.71 2 72795.86
## 194 55357.86 2 67670.71
## 195 48524.00 2 55357.86
## 196 50154.43 2 48524.00
## 197 45111.57 2 50154.43
## 198 36147.00 2 45111.57
## 199 43501.57 2 36147.00
## 200 41472.43 2 43501.57
## 201 41058.00 2 41472.43
## 202 41605.57 2 41058.00
## 203 49382.86 2 41605.57
## 204 59558.57 2 49382.86
## 205 59134.57 2 59558.57
## 206 61109.00 2 59134.57
## 207 63004.43 2 61109.00
## 208 67344.29 2 63004.43
## 209 78180.86 2 67344.29
## 210 69117.86 2 78180.86
## 211 55597.57 2 69117.86
## 212 49426.14 2 55597.57
## 213 39119.43 2 49426.14
## 214 35636.86 2 39119.43
## 215 39201.14 2 35636.86
## 216 27777.00 2 39201.14
## 217 47207.00 2 27777.00
## 218 55587.29 2 47207.00
## 219 56619.71 2 55587.29
## 220 82679.86 2 56619.71
## 221 91259.57 2 82679.86
## 222 93552.71 2 91259.57
## 223 102242.71 2 93552.71
## 224 91884.00 2 102242.71
## 225 85013.86 2 91884.00
## 226 84535.29 2 85013.86
## 227 80700.43 2 84535.29
## 228 79740.57 2 80700.43
## 229 85163.14 2 79740.57
## 230 86724.86 2 85163.14
## 231 80355.00 2 86724.86
## 232 74875.14 2 80355.00
## 233 81347.00 2 74875.14
## 234 66062.43 2 81347.00
## 235 56946.43 2 66062.43
## 236 47732.14 2 56946.43
## 237 38129.71 2 47732.14
## 238 42928.29 2 38129.71
## 239 45392.57 2 42928.29
## 240 37895.43 2 45392.57
## 241 30660.29 2 37895.43
## 242 42430.86 2 30660.29
## 243 35845.14 2 42430.86
## 244 40350.43 2 35845.14
## 245 31494.71 2 40350.43
## 246 30013.29 2 31494.71
## 247 34197.57 2 30013.29
## 248 37430.14 2 34197.57
## 249 26932.43 2 37430.14
## 250 33729.86 2 26932.43
## 251 38081.43 2 33729.86
## 252 44028.00 2 38081.43
## 253 47139.71 2 44028.00
## 254 46558.86 2 47139.71
## 255 58350.57 2 46558.86
## 256 78380.00 2 58350.57
## 257 78168.29 2 78380.00
## 258 70510.86 2 78168.29
## 259 72207.14 2 70510.86
## 260 67881.00 2 72207.14
## 261 69536.43 2 67881.00
## 262 62390.71 2 69536.43
## 263 50113.14 2 62390.71
## 264 45565.57 2 50113.14
## 265 45805.29 2 45565.57
## 266 41348.57 2 45805.29
## 267 51426.86 2 41348.57
## 268 47160.57 2 51426.86
## 269 51907.43 2 47160.57
## 270 49751.43 2 51907.43
## 271 54407.43 2 49751.43
## 272 54746.29 2 54407.43
## 273 61634.57 2 54746.29
## 274 58926.43 2 61634.57
## 275 69999.29 2 58926.43
## 276 63044.86 2 69999.29
## 277 63285.29 2 63044.86
## 278 61395.43 2 63285.29
## 279 67969.43 2 61395.43
## 280 60792.57 2 67969.43
## 281 56859.14 2 60792.57
## 282 44899.43 2 56859.14
## 283 43064.14 2 44899.43
## 284 62790.29 2 43064.14
## 285 69120.71 2 62790.29
## 286 69589.43 2 69120.71
## 287 66633.29 2 69589.43
## 288 65588.57 2 66633.29
## 289 70168.57 2 65588.57
## 290 74644.71 2 70168.57
## 291 52891.00 2 74644.71
## 292 41560.57 2 52891.00
## 293 34704.86 2 41560.57
## 294 46520.00 2 34704.86
## 295 50231.00 2 46520.00
## 296 49216.71 2 50231.00
## 297 76914.86 2 49216.71
## 298 83720.71 2 76914.86
## 299 84485.00 2 83720.71
## 300 89765.00 2 84485.00
## 301 87702.86 2 89765.00
## 302 82013.86 2 87702.86
## 303 85982.43 2 82013.86
## 304 57248.43 2 85982.43
## 305 52968.43 2 57248.43
## 306 52601.86 2 52968.43
## 307 45493.29 2 52601.86
## 308 42298.86 2 45493.29
## 309 46423.71 2 42298.86
## 310 37898.00 2 46423.71
## 311 36435.14 2 37898.00
## 312 30209.57 2 36435.14
## 313 34541.86 2 30209.57
## 314 33604.71 2 34541.86
## 315 37990.71 2 33604.71
## 316 35683.43 2 37990.71
## 317 65201.86 2 35683.43
## 318 62730.57 2 65201.86
## 319 64589.14 2 62730.57
## 320 73744.86 2 64589.14
## 321 76477.71 2 73744.86
## 322 105647.43 2 76477.71
## 323 103790.29 2 105647.43
## 324 76122.29 2 103790.29
## 325 74746.14 2 76122.29
## 326 72865.71 2 74746.14
## 327 63652.57 2 72865.71
## 328 60358.29 2 63652.57
## 329 25957.14 2 60358.29
## 330 30178.43 2 25957.14
## 331 30681.57 2 30178.43
## 332 33337.29 2 30681.57
## 333 32582.71 2 33337.29
## 334 39184.43 2 32582.71
## 335 40415.71 2 39184.43
## 336 34975.43 2 40415.71
## 337 34076.14 2 34975.43
## 338 34221.14 2 34076.14
## 339 28862.57 2 34221.14
## 340 35729.86 2 28862.57
## 341 36489.29 2 35729.86
## 342 36785.14 2 36489.29
## 343 37787.71 2 36785.14
## 344 39832.14 2 37787.71
## 345 41917.86 2 39832.14
## 346 41633.57 2 41917.86
## 347 33557.00 2 41633.57
## 348 22759.57 2 33557.00
## 349 28877.86 2 22759.57
## 350 27574.00 2 28877.86
## 351 27104.71 2 27574.00
## 352 24376.14 2 27104.71
## 353 29732.29 2 24376.14
## 354 34030.00 2 29732.29
## 355 39139.71 2 34030.00
## 356 37066.57 2 39139.71
## 357 38509.29 2 37066.57
## 358 40957.29 2 38509.29
## 359 49423.00 2 40957.29
## 360 50053.29 2 49423.00
## 361 50284.14 2 50053.29
## 362 53103.86 2 50284.14
## 363 50223.00 2 53103.86
## 364 49587.14 2 50223.00
## 365 41167.71 2 49587.14
## 366 37958.71 2 41167.71
## 367 33582.29 2 37958.71
## 368 31039.43 2 33582.29
## 369 26526.57 2 31039.43
## 370 34869.43 2 26526.57
## 371 37487.43 2 34869.43
## 372 46514.43 2 37487.43
## 373 39613.43 2 46514.43
## 374 38980.57 2 39613.43
## 375 37306.14 2 38980.57
## 376 36771.29 2 37306.14
## 377 26317.00 2 36771.29
## 378 31580.71 2 26317.00
## 379 23626.57 2 31580.71
## 380 33035.71 2 23626.57
## 381 44864.57 2 33035.71
## 382 48946.14 2 44864.57
## 383 46969.57 2 48946.14
## 384 49249.57 2 46969.57
## 385 56370.14 2 49249.57
## 386 67228.71 2 56370.14
## 387 59457.29 2 67228.71
## 388 53124.71 2 59457.29
## 389 52814.14 2 53124.71
## 390 61262.00 2 52814.14
## 391 61861.14 2 61262.00
## 392 71784.71 2 61861.14
## 393 59313.29 2 71784.71
## 394 61107.00 2 59313.29
## 395 60603.43 2 61107.00
## 396 60012.57 2 60603.43
## 397 58280.43 2 60012.57
## 398 56862.71 2 58280.43
## 399 41704.43 2 56862.71
## 400 51533.00 2 41704.43
## 401 50388.71 2 51533.00
## 402 49205.29 2 50388.71
## 403 56533.29 2 49205.29
## 404 47996.14 2 56533.29
## 405 47207.57 2 47996.14
## 406 45292.00 2 47207.57
## 407 40343.43 2 45292.00
## 408 39004.86 2 40343.43
## 409 36788.43 2 39004.86
## 410 30027.57 2 36788.43
## 411 39040.14 2 30027.57
## 412 42390.14 2 39040.14
## 413 36291.14 2 42390.14
## 414 30668.29 2 36291.14
## 415 47693.00 2 30668.29
## 416 52094.43 2 47693.00
## 417 56592.57 2 52094.43
## 418 47971.43 2 56592.57
## 419 43762.43 2 47971.43
## 420 42246.71 2 43762.43
## 421 46352.43 2 42246.71
## 422 33094.86 2 46352.43
## 423 32784.86 2 33094.86
## 424 26212.43 2 32784.86
## 425 32611.57 2 26212.43
## 426 42144.86 2 32611.57
## 427 50034.86 2 42144.86
## 428 46332.00 2 50034.86
## 429 42976.29 2 46332.00
## 430 39456.29 2 42976.29
## 431 39328.29 2 39456.29
## 432 35296.14 2 39328.29
## 433 30875.43 2 35296.14
## 434 27709.00 2 30875.43
## 435 29513.29 2 27709.00
## 436 31630.43 2 29513.29
## 437 29346.14 2 31630.43
## 438 34916.86 2 29346.14
## 439 42020.86 2 34916.86
## 440 38303.00 2 42020.86
## 441 37966.43 2 38303.00
## 442 41408.14 2 37966.43
## 443 38988.14 2 41408.14
## 444 43555.29 2 38988.14
## 445 38114.00 2 43555.29
## 446 27847.86 2 38114.00
## 447 26517.00 2 27847.86
## 448 39518.29 2 26517.00
## 449 39153.71 2 39518.29
## 450 45623.14 2 39153.71
## 451 40627.43 2 45623.14
## 452 41027.71 2 40627.43
## 453 42882.86 2 41027.71
## 454 47139.43 2 42882.86
## 455 35547.57 2 47139.43
## 456 41099.00 2 35547.57
## 457 35859.57 2 41099.00
## 458 44524.57 2 35859.57
## 459 48554.29 2 44524.57
## 460 51554.29 2 48554.29
## 461 47810.29 2 51554.29
## 462 50490.00 2 47810.29
## 463 50720.71 2 50490.00
## 464 52720.71 2 50720.71
## 465 52145.57 2 52720.71
## 466 55515.57 2 52145.57
## 467 52457.00 2 55515.57
## 468 58239.57 2 52457.00
## 469 50523.57 2 58239.57
## 470 47788.57 2 50523.57
## 471 46170.00 2 47788.57
## 472 42305.57 2 46170.00
## 473 46605.57 2 42305.57
## 474 55149.57 2 46605.57
## 475 48769.57 2 55149.57
## 476 50719.43 2 48769.57
## 477 44753.71 2 50719.43
## 478 42898.00 2 44753.71
## 479 46141.14 2 42898.00
## 480 34022.57 2 46141.14
## 481 26651.86 2 34022.57
## 482 28791.86 2 26651.86
## 483 31879.00 2 28791.86
## 484 33584.71 2 31879.00
## 485 34690.43 2 33584.71
## 486 27410.43 2 34690.43
## 487 41755.00 2 27410.43
## 488 49379.57 2 41755.00
## 489 57198.86 2 49379.57
## 490 51144.57 2 57198.86
## 491 56677.43 2 51144.57
## 492 65416.43 2 56677.43
## 493 69779.71 2 65416.43
## 494 54046.00 2 69779.71
## 495 43259.57 2 54046.00
## 496 40998.57 2 43259.57
## 497 41368.57 2 40998.57
## 498 42274.29 2 41368.57
## 499 35962.71 2 42274.29
## 500 38709.00 2 35962.71
## 501 44778.14 2 38709.00
## 502 51282.43 2 44778.14
## 503 52094.86 2 51282.43
## 504 52221.43 2 52094.86
## 505 45011.43 2 52221.43
## 506 46545.43 2 45011.43
## 507 42263.00 2 46545.43
## 508 45417.43 2 42263.00
## 509 45034.71 2 45417.43
## 510 37840.57 2 45034.71
## 511 39135.43 2 37840.57
## 512 38191.14 2 39135.43
## 513 39456.86 2 38191.14
## 514 42479.14 2 39456.86
## 515 34282.57 2 42479.14
## 516 28878.43 2 34282.57
## 517 56227.14 2 28878.43
## 518 65569.43 2 56227.14
## 519 69751.29 2 65569.43
## 520 62171.71 2 69751.29
## 521 63705.14 2 62171.71
## 522 79257.86 2 63705.14
## 523 87244.71 2 79257.86
## 524 58568.00 2 87244.71
## 525 52695.29 2 58568.00
## 526 48911.00 2 52695.29
## 527 53924.00 2 48911.00
## 528 53358.86 2 53924.00
## 529 42121.14 2 53358.86
## 530 47835.71 2 42121.14
## 531 62329.29 2 47835.71
## 532 56056.86 2 62329.29
## 533 59946.43 2 56056.86
## 534 64511.57 2 59946.43
## 535 61137.43 2 64511.57
## 536 55448.71 2 61137.43
## 537 47964.43 2 55448.71
## 538 46425.71 2 47964.43
## 539 55512.00 2 46425.71
## 540 55226.29 2 55512.00
## 541 46709.14 2 55226.29
## 542 49254.71 2 46709.14
## 543 49056.29 2 49254.71
## 544 49850.57 2 49056.29
## 545 39145.71 2 49850.57
## 546 29799.43 2 39145.71
## 547 34769.86 2 29799.43
## 548 44061.57 2 34769.86
## 549 43829.14 2 44061.57
## 550 45782.00 2 43829.14
## 551 38924.57 2 45782.00
## 552 49242.43 2 38924.57
## 553 50565.00 2 49242.43
## 554 38864.43 2 50565.00
## 555 49786.71 2 38864.43
## 556 58787.86 2 49786.71
## 557 58060.86 2 58787.86
## 558 62179.43 2 58060.86
## 559 57333.86 2 62179.43
## 560 70797.00 2 57333.86
## 561 89901.71 2 70797.00
## 562 78558.14 2 89901.71
## 563 65466.00 2 78558.14
## 564 70525.00 2 65466.00
## 565 68377.86 2 70525.00
## 566 69736.29 2 68377.86
## 567 60085.86 2 69736.29
## 568 41757.00 2 60085.86
## 569 49780.29 2 41757.00
## 570 56540.29 2 49780.29
## 571 57894.29 2 56540.29
## 572 60270.29 2 57894.29
## 573 61011.00 2 60270.29
## 574 57721.43 2 61011.00
## 575 71741.00 2 57721.43
## 576 59576.00 2 71741.00
## 577 52390.29 2 59576.00
## 578 61092.29 2 52390.29
## 579 62814.00 2 61092.29
## 580 54908.29 2 62814.00
## 581 62082.00 2 54908.29
## 582 57017.71 2 62082.00
## 583 53634.43 2 57017.71
## 584 69169.00 2 53634.43
## 585 52488.14 2 69169.00
## 586 60895.57 2 52488.14
## 587 59856.57 2 60895.57
## 588 52670.00 2 59856.57
## 589 51874.57 2 52670.00
## 590 52190.57 2 51874.57
## 591 41562.43 2 52190.57
## 592 44764.14 2 41562.43
## 593 38612.71 2 44764.14
## 594 43473.14 2 38612.71
## 595 53505.00 2 43473.14
## 596 45870.86 2 53505.00
## 597 52578.00 2 45870.86
## 598 55300.00 2 52578.00
## 599 61789.71 2 55300.00
## 600 57391.71 2 61789.71
## 601 62902.29 2 57391.71
## 602 53250.43 2 62902.29
## 603 55402.57 2 53250.43
## 604 56291.29 2 55402.57
## 605 58933.57 2 56291.29
## 606 59590.71 2 58933.57
## 607 59065.00 2 59590.71
## 608 52399.57 2 59065.00
## 609 60483.43 2 52399.57
## 610 58262.71 2 60483.43
## 611 54939.71 2 58262.71
## 612 51169.00 2 54939.71
## 613 43113.29 2 51169.00
## 614 56289.71 2 43113.29
## 615 60739.86 2 56289.71
## 616 50363.14 2 60739.86
## 617 62270.86 2 50363.14
## 618 67061.57 2 62270.86
## 619 59609.00 2 67061.57
## 620 85054.00 2 59609.00
## 621 68023.29 2 85054.00
## 622 59242.29 2 68023.29
## 623 61535.14 2 59242.29
## 624 56215.86 2 61535.14
## 625 45152.29 2 56215.86
## 626 57409.57 2 45152.29
## 627 35151.43 2 57409.57
## 628 34991.43 2 35151.43
## 629 45944.71 2 34991.43
## 630 57944.71 2 45944.71
## 631 55706.29 2 57944.71
## 632 88593.71 2 55706.29
## 633 77359.43 2 88593.71
## 634 79878.71 2 77359.43
## 635 81753.00 2 79878.71
## 636 75716.00 2 81753.00
## 637 67381.43 2 75716.00
## 638 63528.57 2 67381.43
## 639 49682.86 2 63528.57
## 640 47815.00 2 49682.86
## 641 46546.14 2 47815.00
## 642 44808.71 2 46546.14
## 643 42959.57 2 44808.71
## 644 46023.86 2 42959.57
## 645 51309.57 2 46023.86
## 646 68447.29 2 51309.57
## 647 84959.29 2 68447.29
## 648 81666.29 2 84959.29
## 649 82700.86 2 81666.29
## 650 89422.14 2 82700.86
## 651 104812.71 2 89422.14
## 652 98812.71 2 104812.71
## 653 64779.86 2 98812.71
## 654 61862.86 2 64779.86
## 655 58376.43 2 61862.86
## 656 59503.57 2 58376.43
## 657 55429.43 2 59503.57
##
## $alpha
## [1] 0.05
##
## $itsa.result
## [1] "Significant variation between time periods with chosen alpha"
##
## $group.means
## interrupt_var count mean s.d.
## 1 0 37 22066.04 6308.636
## 2 1 120 29463.10 9187.258
## 3 2 500 51894.78 15531.362
##
## $dependent
## [1] 19269.29 24139.00 23816.14 26510.14 23456.71 24276.71 18818.71
## [8] 18517.14 15475.29 16365.29 12621.29 12679.86 13440.71 15382.86
## [15] 13459.71 14644.14 13927.00 22034.57 20986.00 20390.57 22554.14
## [22] 21782.57 22529.57 24642.71 17692.29 19668.29 28640.00 28706.00
## [29] 28331.57 25617.86 27223.29 31622.57 32021.43 33634.57 30784.86
## [36] 34770.57 38443.00 35073.00 31422.29 30103.29 19319.29 27926.29
## [43] 30715.43 31962.29 39790.14 39211.57 44548.57 49398.00 41039.00
## [50] 34821.29 29123.57 21275.71 28476.14 24561.86 20323.57 25370.00
## [57] 26811.86 27151.86 27623.29 22896.57 41889.29 44000.14 38558.00
## [64] 43373.86 49001.00 61213.29 58939.57 42046.86 39191.71 42646.43
## [71] 36121.57 30915.57 20273.43 23938.29 19274.29 21662.29 15819.00
## [78] 18126.14 17240.71 16127.71 13917.14 15379.86 19510.14 24567.29
## [85] 25700.43 25729.00 26435.00 31157.14 29818.43 30962.43 28746.71
## [92] 27830.71 28252.14 28717.57 21365.43 24816.86 16838.57 15529.14
## [99] 13286.29 13629.43 14404.86 19524.86 18475.71 22495.00 22254.57
## [106] 24173.29 27466.43 24602.43 20531.14 20846.43 23875.71 36312.71
## [113] 34244.00 36347.43 39779.71 42018.71 39372.57 33444.00 29255.86
## [120] 31640.14 29671.14 31023.71 39723.43 39314.14 38239.86 34649.43
## [127] 36688.43 42867.57 42226.86 32155.14 33603.00 37254.43 33145.57
## [134] 31299.43 30252.00 26310.71 27929.86 27666.14 25017.57 27335.00
## [141] 25760.71 18436.86 21906.00 19418.14 22826.14 23444.29 25264.86
## [148] 25473.29 27366.86 28855.86 32326.86 27141.43 26297.71 23499.14
## [155] 30246.29 39931.86 38020.43 35004.00 40750.86 42363.29 46273.57
## [162] 41083.29 35711.29 41921.71 60583.29 63115.57 61300.14 57666.43
## [169] 55834.00 58927.71 57810.57 48987.14 52219.29 56503.57 56545.00
## [176] 64705.57 53833.29 50114.00 39592.43 29907.29 33923.29 45489.00
## [183] 44866.29 51680.57 58257.00 70600.57 76648.00 69430.14 69651.57
## [190] 77745.14 72795.86 67670.71 55357.86 48524.00 50154.43 45111.57
## [197] 36147.00 43501.57 41472.43 41058.00 41605.57 49382.86 59558.57
## [204] 59134.57 61109.00 63004.43 67344.29 78180.86 69117.86 55597.57
## [211] 49426.14 39119.43 35636.86 39201.14 27777.00 47207.00 55587.29
## [218] 56619.71 82679.86 91259.57 93552.71 102242.71 91884.00 85013.86
## [225] 84535.29 80700.43 79740.57 85163.14 86724.86 80355.00 74875.14
## [232] 81347.00 66062.43 56946.43 47732.14 38129.71 42928.29 45392.57
## [239] 37895.43 30660.29 42430.86 35845.14 40350.43 31494.71 30013.29
## [246] 34197.57 37430.14 26932.43 33729.86 38081.43 44028.00 47139.71
## [253] 46558.86 58350.57 78380.00 78168.29 70510.86 72207.14 67881.00
## [260] 69536.43 62390.71 50113.14 45565.57 45805.29 41348.57 51426.86
## [267] 47160.57 51907.43 49751.43 54407.43 54746.29 61634.57 58926.43
## [274] 69999.29 63044.86 63285.29 61395.43 67969.43 60792.57 56859.14
## [281] 44899.43 43064.14 62790.29 69120.71 69589.43 66633.29 65588.57
## [288] 70168.57 74644.71 52891.00 41560.57 34704.86 46520.00 50231.00
## [295] 49216.71 76914.86 83720.71 84485.00 89765.00 87702.86 82013.86
## [302] 85982.43 57248.43 52968.43 52601.86 45493.29 42298.86 46423.71
## [309] 37898.00 36435.14 30209.57 34541.86 33604.71 37990.71 35683.43
## [316] 65201.86 62730.57 64589.14 73744.86 76477.71 105647.43 103790.29
## [323] 76122.29 74746.14 72865.71 63652.57 60358.29 25957.14 30178.43
## [330] 30681.57 33337.29 32582.71 39184.43 40415.71 34975.43 34076.14
## [337] 34221.14 28862.57 35729.86 36489.29 36785.14 37787.71 39832.14
## [344] 41917.86 41633.57 33557.00 22759.57 28877.86 27574.00 27104.71
## [351] 24376.14 29732.29 34030.00 39139.71 37066.57 38509.29 40957.29
## [358] 49423.00 50053.29 50284.14 53103.86 50223.00 49587.14 41167.71
## [365] 37958.71 33582.29 31039.43 26526.57 34869.43 37487.43 46514.43
## [372] 39613.43 38980.57 37306.14 36771.29 26317.00 31580.71 23626.57
## [379] 33035.71 44864.57 48946.14 46969.57 49249.57 56370.14 67228.71
## [386] 59457.29 53124.71 52814.14 61262.00 61861.14 71784.71 59313.29
## [393] 61107.00 60603.43 60012.57 58280.43 56862.71 41704.43 51533.00
## [400] 50388.71 49205.29 56533.29 47996.14 47207.57 45292.00 40343.43
## [407] 39004.86 36788.43 30027.57 39040.14 42390.14 36291.14 30668.29
## [414] 47693.00 52094.43 56592.57 47971.43 43762.43 42246.71 46352.43
## [421] 33094.86 32784.86 26212.43 32611.57 42144.86 50034.86 46332.00
## [428] 42976.29 39456.29 39328.29 35296.14 30875.43 27709.00 29513.29
## [435] 31630.43 29346.14 34916.86 42020.86 38303.00 37966.43 41408.14
## [442] 38988.14 43555.29 38114.00 27847.86 26517.00 39518.29 39153.71
## [449] 45623.14 40627.43 41027.71 42882.86 47139.43 35547.57 41099.00
## [456] 35859.57 44524.57 48554.29 51554.29 47810.29 50490.00 50720.71
## [463] 52720.71 52145.57 55515.57 52457.00 58239.57 50523.57 47788.57
## [470] 46170.00 42305.57 46605.57 55149.57 48769.57 50719.43 44753.71
## [477] 42898.00 46141.14 34022.57 26651.86 28791.86 31879.00 33584.71
## [484] 34690.43 27410.43 41755.00 49379.57 57198.86 51144.57 56677.43
## [491] 65416.43 69779.71 54046.00 43259.57 40998.57 41368.57 42274.29
## [498] 35962.71 38709.00 44778.14 51282.43 52094.86 52221.43 45011.43
## [505] 46545.43 42263.00 45417.43 45034.71 37840.57 39135.43 38191.14
## [512] 39456.86 42479.14 34282.57 28878.43 56227.14 65569.43 69751.29
## [519] 62171.71 63705.14 79257.86 87244.71 58568.00 52695.29 48911.00
## [526] 53924.00 53358.86 42121.14 47835.71 62329.29 56056.86 59946.43
## [533] 64511.57 61137.43 55448.71 47964.43 46425.71 55512.00 55226.29
## [540] 46709.14 49254.71 49056.29 49850.57 39145.71 29799.43 34769.86
## [547] 44061.57 43829.14 45782.00 38924.57 49242.43 50565.00 38864.43
## [554] 49786.71 58787.86 58060.86 62179.43 57333.86 70797.00 89901.71
## [561] 78558.14 65466.00 70525.00 68377.86 69736.29 60085.86 41757.00
## [568] 49780.29 56540.29 57894.29 60270.29 61011.00 57721.43 71741.00
## [575] 59576.00 52390.29 61092.29 62814.00 54908.29 62082.00 57017.71
## [582] 53634.43 69169.00 52488.14 60895.57 59856.57 52670.00 51874.57
## [589] 52190.57 41562.43 44764.14 38612.71 43473.14 53505.00 45870.86
## [596] 52578.00 55300.00 61789.71 57391.71 62902.29 53250.43 55402.57
## [603] 56291.29 58933.57 59590.71 59065.00 52399.57 60483.43 58262.71
## [610] 54939.71 51169.00 43113.29 56289.71 60739.86 50363.14 62270.86
## [617] 67061.57 59609.00 85054.00 68023.29 59242.29 61535.14 56215.86
## [624] 45152.29 57409.57 35151.43 34991.43 45944.71 57944.71 55706.29
## [631] 88593.71 77359.43 79878.71 81753.00 75716.00 67381.43 63528.57
## [638] 49682.86 47815.00 46546.14 44808.71 42959.57 46023.86 51309.57
## [645] 68447.29 84959.29 81666.29 82700.86 89422.14 104812.71 98812.71
## [652] 64779.86 61862.86 58376.43 59503.57 55429.43
##
## $interrupt_var
## [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
## [38] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
## [75] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
## [112] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
## [149] 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [186] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [223] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [260] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [297] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [334] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [371] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [408] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [445] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [482] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [519] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [556] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [593] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## [630] 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
## Levels: 0 1 2
##
## $residuals
## 2 3 4 5 6
## 1929.186817 4001.934908 -499.882726 2471.178137 -2894.114931
## 7 8 9 10 11
## 546.194315 -5615.491241 -1233.262959 -4016.325640 -515.946453
## 12 13 14 15 16
## -5023.702726 -1752.206029 -1041.612140 247.598789 -3342.200014
## 17 18 19 20 21
## -507.420406 -2240.984334 6482.005473 -1524.103646 -1219.697378
## 22 23 24 25 26
## 1454.842935 -1173.404058 235.722368 1707.824847 -7056.003853
## 27 28 29 30 31
## 884.528088 8160.531815 527.427238 96.360561 -2296.036679
## 32 33 34 35 36
## 1638.174265 4659.756447 1283.352843 2554.215199 -1679.822657
## 37 38 39 40 41
## 4751.382825 4388.367073 -2133.138951 -2891.877234 -1078.005391
## 42 43 44 45 46
## -10730.101430 7131.221780 2534.240762 1387.586269 8145.449069
## 47 48 49 50 51
## 849.377636 6682.880511 6952.345898 -5568.206345 -4612.618728
## 52 53 54 55 56
## -4974.582121 -7932.927991 6002.163647 -4091.192287 -4970.421516
## 57 58 59 60 61
## 3713.105150 824.353886 -72.980315 106.676197 -5024.595986
## 62 63 64 65 66
## 18024.362895 3836.563079 -3417.018414 6069.030583 7563.430624
## 67 68 69 70 71
## 14946.766157 2193.040823 -12748.478462 -1107.085905 4797.778122
## 72 73 74 75 76
## -4691.752852 -4298.426359 -10473.024090 2324.421114 -5484.587466
## 77 78 79 80 81
## 905.838671 -6986.716686 334.860018 -2530.450387 -2883.617098
## 82 83 84 85 86
## -4139.064108 -779.341061 2095.711830 3608.437128 401.777081
## 87 88 89 90 91
## -542.061565 139.419775 4255.706531 -1135.329365 1157.492472
## 92 93 94 95 96
## -2039.948979 -1054.526859 152.969967 256.748296 -7494.803540
## 97 98 99 100 101
## 2265.889339 -8674.250561 -3137.088381 -4256.255314 -1988.397609
## 102 103 104 105 106
## -1507.438150 2947.125404 -2495.761410 2423.849517 -1265.741617
## 107 108 109 110 111
## 859.297196 2505.889409 -3184.131398 -4797.666586 -988.594347
## 112 113 114 115 116
## 1770.127949 11607.536972 -1134.027626 2744.674557 4371.896487
## 117 118 119 120 121
## 3665.469804 -902.077881 -4559.853570 -3660.374378 2317.979182
## 122 123 124 125 126
## -1697.103034 1345.171881 8884.172780 1009.200137 286.144234
## 127 128 129 130 131
## -2382.382704 2737.754765 7167.123417 1223.758430 -8298.124894
## 132 133 134 135 136
## 1792.805253 4201.750705 -3040.591247 -1360.705541 -823.860865
## 137 138 139 140 141
## -3866.292487 1135.076990 -518.109785 -2940.373977 1649.934420
## 142 143 144 145 146
## -1913.059845 -7885.938796 1868.194895 -3596.718003 1946.244358
## 147 148 149 150 151
## -360.198607 929.911603 -423.988872 1290.718929 1154.744706
## 152 153 154 155 156
## 3347.954715 -4816.123325 -1209.945920 -3284.481305 5864.264346
## 157 158 159 160 161
## 9759.754103 -3634.930878 -5011.061063 3324.353660 5.098863
## 162 163 164 165 166
## 2531.673973 -6014.235614 -6932.175752 3888.251362 17220.324156
## 167 168 169 170 171
## 3738.124187 -250.393263 -2326.191862 -1040.337194 3625.881382
## 172 173 174 175 176
## -146.142032 -8010.890979 2793.104607 4303.716855 668.572288
## 177 178 179 180 181
## 8793.591658 -9081.713861 -3470.913704 -10800.768505 -11456.792048
## 182 183 184 185 186
## 870.543480 8989.914849 -1557.953198 5790.716722 6519.444769
## 187 188 189 190 191
## 13219.433523 8674.187801 -3733.289018 2682.166156 10585.717966
## 192 193 194 195 196
## -1309.091295 -2186.989191 -10101.689017 -6369.229427 1125.694950
## 197 198 199 200 201
## -5316.319553 -9953.347407 5094.198933 -3246.292318 -1919.405622
## 202 203 204 205 206
## -1016.191023 6291.194563 9792.806874 636.485945 2974.771438
## 207 208 209 210 211
## 3175.837977 5889.127183 13001.436679 -5361.000867 -11103.844885
## 212 213 214 215 216
## -5672.798132 -10683.481754 -5321.314195 1231.551044 -13251.294707
## 217 218 219 220 221
## 15982.369091 7688.739748 1529.600015 26703.761076 12919.882547
## 222 223 224 225 226
## 7850.316849 14572.449159 -3243.615711 -1224.395619 4192.667458
## 227 228 229 230 231
## 768.497878 3099.535345 9345.811172 6254.128886 -1455.918239
## 232 233 234 235 236
## -1469.462622 9704.951007 -11133.464799 -7132.962190 -8524.324093
## 237 238 239 240 241
## -10219.484660 2819.440775 1165.817462 -8446.059861 -9247.506209
## 242 243 244 245 246
## 8731.925612 -7954.741230 2202.095724 -10519.843539 -4401.713296
## 247 248 249 250 251
## 1053.864964 695.678566 -12576.076966 3229.997838 1748.334752
## 252 253 254 255 256
## 3960.591597 1969.237077 -1281.947378 11008.231275 20918.563481
## 257 258 259 260 261
## 3518.532641 -3957.212656 4310.319252 -1471.496477 3896.425070
## 262 263 264 265 266
## -4669.900403 -10815.354847 -4826.890088 -684.663208 -5347.089055
## 267 268 269 270 271
## 8555.739914 -4359.258097 4048.725428 -2180.804823 4325.373296
## 272 273 274 275 276
## 668.669528 7266.163929 -1353.182783 12043.675593 -4412.959846
## 277 278 279 280 281
## 1795.433279 -300.748392 7895.038405 -4923.317327 -2697.903573
## 282 283 284 285 286
## -11282.133871 -2854.153496 18446.945517 7849.323115 2885.560392
## 287 288 289 290 291
## -472.811090 1019.297831 6495.822651 7041.624234 -18553.305996
## 292 293 294 295 296
## -11215.716853 -8348.188547 9350.206892 2922.005225 -1276.886705
## 297 298 299 300 301
## 27291.668599 10328.278122 5252.096317 9876.222149 3283.030836
## 302 303 304 305 306
## -636.334844 8214.269665 -23925.372275 -3547.200620 -240.876709
## 307 308 309 310 311
## -7034.873723 -4129.059568 2737.106410 -9328.366889 -3474.855746
## 312 313 314 315 316
## -8445.071758 1229.707481 -3425.199864 1765.012199 -4306.133085
## 317 318 319 320 321
## 27192.299914 -610.317280 3368.995687 10929.771109 5805.623502
## 322 323 324 325 326
## 32630.127913 5740.903828 -20333.383241 2033.854335 1334.367045
## 327 328 329 330 331
## -6265.080173 -1653.078629 -33227.219934 515.513742 -2603.852893
## 332 333 334 335 336
## -379.912219 -3413.493138 3835.758970 -598.237005 -7095.154393
## 337 338 339 340 341
## -3325.841965 -2409.117127 -7892.120757 3573.639729 -1560.114338
## 342 343 344 345 346
## -1915.963191 -1167.282492 16.786284 348.067819 -1726.080110
## 347 348 349 350 351
## -9558.690867 -13425.184495 1958.948201 -4595.334897 -3945.711540
## 352 353 354 355 356
## -6271.563971 1426.110962 1127.434562 2549.051938 -3909.008159
## 357 358 359 360 361
## -687.219869 522.710371 6887.665827 253.072441 -56.952066
## 362 363 364 365 366
## 2564.651443 -2735.952302 -899.592909 -8773.358692 -4757.199822
## 367 368 369 370 371
## -6379.815042 -5167.026366 -7497.722727 4717.856839 176.407979
## 372 373 374 375 376
## 6956.763120 -7690.785065 -2401.527549 -3532.867791 -2630.808837
## 377 378 379 380 381
## -12626.105227 1608.986927 -10862.228749 5372.786591 9127.158466
## 382 383 384 385 386
## 3057.759270 -2421.425401 1554.775531 6718.757853 11466.788718
## 387 388 389 390 391
## -5622.956768 -5286.452547 -162.708067 8551.666915 1901.254836
## 392 393 394 395 396
## 11310.669954 -9676.702368 2819.407216 776.554283 617.838531
## 397 398 399 400 401
## -607.258427 -538.528922 -14480.198703 8356.502855 -1222.202063
## 402 403 404 405 406
## -1423.658283 6919.904634 -7905.784262 -1368.179940 -2607.036339
## 407 408 409 410 411
## -5911.754176 -3003.693610 -4071.422938 -8930.244995 5884.177063
## 412 413 414 415 416
## 1500.010802 -7473.802139 -7862.783423 13987.203244 3778.820190
## 417 418 419 420 421
## 4499.863401 -7981.374768 -4792.114156 -2695.861973 2710.567251
## 422 423 424 425 426
## -14070.335689 -3003.309447 -9309.710552 2729.582368 6771.423695
## 427 428 429 430 431
## 6480.404847 -3993.280387 -4171.376275 -4811.659602 -1918.960631
## 432 433 434 435 436
## -5841.259889 -6801.778215 -6174.557044 -1652.990782 -1084.201334
## 437 438 439 440 441
## -5185.319790 2345.661401 4669.135574 -5145.041310 -2291.122044
## 442 443 444 445 446
## 1439.422062 -3934.095779 2709.777621 -6650.815971 -12247.502533
## 447 448 449 450 451
## -4768.437187 9374.927733 -2146.737553 4635.549126 -5911.925451
## 452 453 454 455 456
## -1224.551953 287.084471 2951.659275 -12292.987906 3206.029001
## 457 458 459 460 461
## -6797.375301 6363.856657 2957.674187 2499.562313 -3818.897037
## 462 463 464 465 466
## 2073.742518 4.851637 1806.863454 -484.585637 3378.974999
## 467 468 469 470 471
## -2571.572433 5835.721600 -6842.610094 -2956.100646 -2227.623300
## 472 473 474 475 476
## -4703.069756 2913.201667 7767.143265 -5944.916964 1479.957064
## 477 478 479 480 481
## -6159.033206 -2895.251184 1940.378671 -12961.305909 -9932.430353
## 482 483 484 485 486
## -1467.228916 -216.533729 -1160.060708 -1518.110452 -9746.982613
## 487 488 489 490 491
## 10844.943505 6159.676255 7435.912234 -5328.517887 5399.843411
## 492 493 494 495 496
## 9390.804810 6254.690437 -13223.391083 -10507.883703 -3512.476406
## 497 498 499 500 501
## -1202.192209 -613.994577 -7702.807542 459.772865 4172.182077
## 502 503 504 505 506
## 5468.213932 698.969446 128.352764 -7190.264902 531.019070
## 507 508 509 510 511
## -5067.816383 1761.591614 -1328.105382 -8193.820782 -725.287524
## 512 513 514 515 516
## -2780.758931 -704.702917 1231.406139 -9558.749195 -7928.978735
## 517 518 519 520 521
## 24057.317587 9930.218899 6094.964439 -5073.280730 2964.580686
## 522 523 524 525 526
## 17201.378464 11841.625369 -23689.035266 -4952.737811 -3697.335457
## 527 528 529 530 531
## 4563.161123 -303.903308 -11056.638490 4301.612478 13891.206624
## 532 533 534 535 536
## -4818.925441 4453.350116 5680.645129 -1611.089300 -4404.272376
## 537 538 539 540 541
## -7006.770196 -2122.821370 8283.916804 200.778114 -8071.178139
## 542 543 544 545 546
## 1783.405978 -599.512648 365.055163 -11021.420741 -11181.299934
## 547 548 549 550 551
## 1809.672852 6835.998368 -1370.143777 782.172669 -7751.106346
## 552 553 554 555 556
## 8451.474498 919.744661 -11915.795561 9047.371992 8675.521322
## 557 558 559 560 561
## 224.162525 4966.611270 -3413.325067 14208.060014 21759.336296
## 562 563 564 565 566
## -5979.005240 -9336.626921 6957.436276 468.896801 3669.902708
## 567 568 569 570 571
## -7146.265576 -17193.577363 6558.674234 6433.466592 1986.351523
## 572 573 574 575 576
## 3200.412203 1902.154684 -2023.063018 14819.464385 -9376.474532
## 577 578 579 580 581
## -6122.756153 8745.686958 2999.752822 -6383.455944 7574.571695
## 582 583 584 585 586
## -3645.859292 -2683.212436 15754.736173 -14257.161858 8464.996260
## 587 588 589 590 591
## 211.135228 -6083.815113 -712.065014 286.534493 -10612.784749
## 592 593 594 595 596
## 1709.503455 -7189.486210 2949.809962 8810.675178 -7432.337152
## 597 598 599 600 601
## 5826.069191 2792.313644 6946.135146 -3021.033395 6263.695441
## 602 603 604 605 606
## -8117.075748 2317.838398 1359.684583 3239.317364 1628.974500
## 607 608 609 610 611
## 539.331023 -5674.954196 8128.861250 -1029.040238 -2446.327352
## 612 613 614 615 616
## -3365.398831 -8185.262900 11904.201993 5046.951604 -9148.666644
## 617 618 619 620 621
## 11663.857347 6235.929506 -5327.808319 26512.639080 -12353.781260
## 622 623 624 625 626
## -6519.820716 3308.478945 -3978.429273 -10477.239087 11274.284931
## 627 628 629 630 631
## -21502.485865 -2561.591200 8528.999013 11129.402739 -1406.863233
## 632 633 634 635 636
## 33401.479794 -6055.255249 6104.767765 5817.120591 -1828.303536
## 637 638 639 640 641
## -4982.204599 -1682.723294 -12222.096214 -2208.210490 -1874.160204
## 642 643 644 645 646
## -2522.715064 -2880.878177 1770.255243 4426.343193 17028.105290
## 647 648 649 650 651
## 18833.322363 1370.498099 5230.967741 11064.432760 20687.111904
## 652 653 654 655 656
## 1479.645065 -27404.293378 -1115.890950 -2099.086880 2019.945522
## 657
## -3021.458491
##
## $fitted.values
## 2 3 4 5 6 7 8 9
## 17340.10 20137.07 24316.03 24038.96 26350.83 23730.52 24434.21 19750.41
## 10 11 12 13 14 15 16 17
## 19491.61 16881.23 17644.99 14432.06 14482.33 15135.26 16801.91 15151.56
## 18 19 20 21 22 23 24 25
## 16167.98 15552.57 22510.10 21610.27 21099.30 22955.98 22293.85 22934.89
## 26 27 28 29 30 31 32 33
## 24748.29 18783.76 20479.47 28178.57 28235.21 27913.89 25585.11 26962.81
## 34 35 36 37 38 39 40 41
## 30738.08 31080.36 32464.68 30019.19 34054.63 37206.14 34314.16 31181.29
## 42 43 44 45 46 47 48 49
## 30049.39 20795.06 28181.19 30574.70 31644.69 38362.19 37865.69 42445.65
## 50 51 52 53 54 55 56 57
## 46607.21 39433.90 34098.15 29208.64 22473.98 28653.05 25293.99 21656.89
## 58 59 60 61 62 63 64 65
## 25987.50 27224.84 27516.61 27921.17 23864.92 40163.58 41975.02 37304.83
## 66 67 68 69 70 71 72 73
## 41437.57 46266.52 56746.53 54795.34 40298.80 37848.65 40813.32 35214.00
## 74 75 76 77 78 79 80 81
## 30746.45 21613.86 24758.87 20756.45 22805.72 17791.28 19771.16 19011.33
## 82 83 84 85 86 87 88 89
## 18056.21 16159.20 17414.43 20958.85 25298.65 26271.06 26295.58 26901.44
## 90 91 92 93 94 95 96 97
## 30953.76 29804.94 30786.66 28885.24 28099.17 28460.82 28860.23 22550.97
## 98 99 100 101 102 103 104 105
## 25512.82 18666.23 17542.54 15617.83 15912.30 16577.73 20971.48 20071.15
## 106 107 108 109 110 111 112 113
## 23520.31 23313.99 24960.54 27786.56 25328.81 21835.02 22105.59 24705.18
## 114 115 116 117 118 119 120 121
## 35378.03 33602.75 35407.82 38353.24 40274.65 38003.85 32916.23 29322.16
## 122 123 124 125 126 127 128 129
## 31368.25 29678.54 30839.26 38304.94 37953.71 37031.81 33950.67 35700.45
## 130 131 132 133 134 135 136 137
## 41003.10 40453.27 31810.19 33052.68 36186.16 32660.13 31075.86 30177.01
## 138 139 140 141 142 143 144 145
## 26794.78 28184.25 27957.95 25685.07 27673.77 26322.80 20037.81 23014.86
## 146 147 148 149 150 151 152 153
## 20879.90 23804.48 24334.95 25897.27 26076.14 27701.11 28978.90 31957.55
## 154 155 156 157 158 159 160 161
## 27507.66 26783.62 24382.02 30172.10 41655.36 40015.06 37426.50 42358.19
## 162 163 164 165 166 167 168 169
## 43741.90 47097.52 42643.46 38033.46 43362.96 59377.45 61550.54 59992.62
## 170 171 172 173 174 175 176 177
## 56874.34 55301.83 57956.71 56998.03 49426.18 52199.85 55876.43 55911.98
## 178 179 180 181 182 183 184 185
## 62915.00 53584.91 50393.20 41364.08 33052.74 36499.09 46424.24 45889.85
## 186 187 188 189 190 191 192 193
## 51737.56 57381.14 67973.81 73163.43 66969.41 67159.42 74104.95 69857.70
## 194 195 196 197 198 199 200 201
## 65459.55 54893.23 49028.73 50427.89 46100.35 38407.37 44718.72 42977.41
## 202 203 204 205 206 207 208 209
## 42621.76 43091.66 49765.76 58498.09 58134.23 59828.59 61455.16 65179.42
## 210 211 212 213 214 215 216 217
## 74478.86 66701.42 55098.94 49802.91 40958.17 37969.59 41028.29 31224.63
## 218 219 220 221 222 223 224 225
## 47898.55 55090.11 55976.10 78339.69 85702.40 87670.27 95127.62 86238.25
## 226 227 228 229 230 231 232 233
## 80342.62 79931.93 76641.04 75817.33 80470.73 81810.92 76344.61 71642.05
## 234 235 236 237 238 239 240 241
## 77195.89 64079.39 56256.47 48349.20 40108.84 44226.75 46341.49 39907.79
## 242 243 244 245 246 247 248 249
## 33698.93 43799.88 38148.33 42014.56 34415.00 33143.71 36734.46 39508.51
## 250 251 252 253 254 255 256 257
## 30499.86 36333.09 40067.41 45170.48 47840.80 47342.34 57461.44 74649.75
## 258 259 260 261 262 263 264 265
## 74468.07 67896.82 69352.50 65640.00 67060.61 60928.50 50392.46 46489.95
## 266 267 268 269 270 271 272 273
## 46695.66 42871.12 51519.83 47858.70 51932.23 50082.06 54077.62 54368.41
## 274 275 276 277 278 279 280 281
## 60279.61 57955.61 67457.82 61489.85 61696.18 60074.39 65715.89 59557.05
## 282 283 284 285 286 287 288 289
## 56181.56 45918.30 44343.34 61271.39 66703.87 67106.10 64569.27 63672.75
## 290 291 292 293 294 295 296 297
## 67603.09 71444.31 52776.29 43053.05 37169.79 47308.99 50493.60 49623.19
## 298 299 300 301 302 303 304 305
## 73392.44 79232.90 79888.78 84419.83 82650.19 77768.16 81173.80 56515.63
## 306 307 308 309 310 311 312 313
## 52842.73 52528.16 46427.92 43686.61 47226.37 39910.00 38654.64 33312.15
## 314 315 316 317 318 319 320 321
## 37029.91 36225.70 39989.56 38009.56 63340.89 61220.15 62815.09 70672.09
## 322 323 324 325 326 327 328 329
## 73017.30 98049.38 96455.67 72712.29 71531.35 69917.65 62011.36 59184.36
## 330 331 332 333 334 335 336 337
## 29662.91 33285.42 33717.20 35996.21 35348.67 41013.95 42070.58 37401.98
## 338 339 340 341 342 343 344 345
## 36630.26 36754.69 32156.22 38049.40 38701.11 38955.00 39815.36 41569.79
## 346 347 348 349 350 351 352 353
## 43359.65 43115.69 36184.76 26918.91 32169.33 31050.43 30647.71 28306.17
## 354 355 356 357 358 359 360 361
## 32902.57 36590.66 40975.58 39196.51 40434.58 42535.33 49800.21 50341.09
## 362 363 364 365 366 367 368 369
## 50539.21 52958.95 50486.74 49941.07 42715.91 39962.10 36206.45 34024.29
## 370 371 372 373 374 375 376 377
## 30151.57 37311.02 39557.67 47304.21 41382.10 40839.01 39402.09 38943.11
## 378 379 380 381 382 383 384 385
## 29971.73 34488.80 27662.93 35737.41 45888.38 49391.00 47694.80 49651.39
## 386 387 388 389 390 391 392 393
## 55761.93 65080.24 58411.17 52976.85 52710.33 59959.89 60474.04 68989.99
## 394 395 396 397 398 399 400 401
## 58287.59 59826.87 59394.73 58887.69 57401.24 56184.63 43176.50 51610.92
## 402 403 404 405 406 407 408 409
## 50628.94 49613.38 55901.93 48575.75 47899.04 46255.18 42008.55 40859.85
## 410 411 412 413 414 415 416 417
## 38957.82 33155.97 40890.13 43764.94 38531.07 33705.80 48315.61 52092.71
## 418 419 420 421 422 423 424 425
## 55952.80 48554.54 44942.58 43641.86 47165.19 35788.17 35522.14 29881.99
## 426 427 428 429 430 431 432 433
## 35373.43 43554.45 50325.28 47147.66 44267.95 41247.25 41137.40 37677.21
## 434 435 436 437 438 439 440 441
## 33883.56 31166.28 32714.63 34531.46 32571.20 37351.72 43448.04 40257.55
## 442 443 444 445 446 447 448 449
## 39968.72 42922.24 40845.51 44764.82 40095.36 31285.44 30143.36 41300.45
## 450 451 452 453 454 455 456 457
## 40987.59 46539.35 42252.27 42595.77 44187.77 47840.56 37892.97 42656.95
## 458 459 460 461 462 463 464 465
## 38160.71 45596.61 49054.72 51629.18 48416.26 50715.86 50913.85 52630.16
## 466 467 468 469 470 471 472 473
## 52136.60 55028.57 52403.85 57366.18 50744.67 48397.62 47008.64 43692.37
## 474 475 476 477 478 479 480 481
## 47382.43 54714.49 49239.47 50912.75 45793.25 44200.76 46983.88 36584.29
## 482 483 484 485 486 487 488 489
## 30259.09 32095.53 34744.77 36208.54 37157.41 30910.06 43219.90 49762.94
## 490 491 492 493 494 495 496 497
## 56473.09 51277.59 56025.62 63525.02 67269.39 53767.46 44511.05 42570.76
## 498 499 500 501 502 503 504 505
## 42888.28 43665.52 38249.23 40605.96 45814.21 51395.89 52093.08 52201.69
## 506 507 508 509 510 511 512 513
## 46014.41 47330.82 43655.84 46362.82 46034.39 39860.72 40971.90 40161.56
## 514 515 516 517 518 519 520 521
## 41247.74 43841.32 36807.41 32169.83 55639.21 63656.32 67245.00 60740.56
## 522 523 524 525 526 527 528 529
## 62056.48 75403.09 82257.04 57648.02 52608.34 49360.84 53662.76 53177.78
## 530 531 532 533 534 535 536 537
## 43534.10 48438.08 60875.78 55493.08 58830.93 62748.52 59852.99 54971.20
## 538 539 540 541 542 543 544 545
## 48548.54 47228.08 55025.51 54780.32 47471.31 49655.80 49485.52 50167.14
## 546 547 548 549 550 551 552 553
## 40980.73 32960.18 37225.57 45199.29 44999.83 46675.68 40790.95 49645.26
## 554 555 556 557 558 559 560 561
## 50780.22 40739.34 50112.34 57836.69 57212.82 60747.18 56588.94 68142.38
## 562 563 564 565 566 567 568 569
## 84537.15 74802.63 63567.56 67908.96 66066.38 67232.12 58950.58 43221.61
## 570 571 572 573 574 575 576 577
## 50106.82 55907.93 57069.87 59108.85 59744.49 56921.54 68952.47 58513.04
## 578 579 580 581 582 583 584 585
## 52346.60 59814.25 61291.74 54507.43 60663.57 56317.64 53414.26 66745.30
## 586 587 588 589 590 591 592 593
## 52430.58 59645.44 58753.82 52586.64 51904.04 52175.21 43054.64 45802.20
## 594 595 596 597 598 599 600 601
## 40523.33 44694.32 53303.19 46751.93 52507.69 54843.58 60412.75 56638.59
## 602 603 604 605 606 607 608 609
## 61367.50 53084.73 54931.60 55694.25 57961.74 58525.67 58074.53 52354.57
## 610 611 612 613 614 615 616 617
## 59291.75 57386.04 54534.40 51298.55 44385.51 55692.91 59511.81 50607.00
## 618 619 620 621 622 623 624 625
## 60825.64 64936.81 58541.36 80377.07 65762.11 58226.66 60194.29 55629.52
## 626 627 628 629 630 631 632 633
## 46135.29 56653.91 37553.02 37415.72 46815.31 57113.15 55192.23 83414.68
## 634 635 636 637 638 639 640 641
## 73773.95 75935.88 77544.30 72363.63 65211.29 61904.95 50023.21 48420.30
## 642 643 644 645 646 647 648 649
## 47331.43 45840.45 44253.60 46883.23 51419.18 66125.96 80295.79 77469.89
## 650 651 652 653 654 655 656 657
## 78357.71 84125.60 97333.07 92184.15 62978.75 60475.52 57483.63 58450.89
##
## $shapiro.test
## [1] 0
##
## $levenes.test
## [1] 0
##
## $autcorr
## [1] "No autocorrelation evidence"
##
## $post_sums
## [1] "Post-Est Warning"
##
## $adjr_sq
## [1] 0.8272
##
## $fstat.bootstrap
##
## ORDINARY NONPARAMETRIC BOOTSTRAP
##
##
## Call:
## boot::boot(data = x, statistic = f.stat, R = Reps, formula = depvar ~
## ., parallel = parr)
##
##
## Bootstrap Statistics :
## original bias std. error
## t1* 8.011242 0.5244156 3.584296
## t2* 1817.523541 22.9991980 217.715974
## WARNING: All values of t3* are NA
##
## $itsa.plot
##
## $booted.ints
## Parameter Lower CI Median F-value Upper CI
## 1 interrupt_var 3.393581 8.170882 15.06169
## 2 lag_depvar 1502.991602 1829.199600 2218.62756
Ahora con las tendencias descompuestas
require(zoo)
require(scales)
Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha2=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(gastador=ifelse(gastador=="Andrés",1,0)) %>%
dplyr::mutate(treat=ifelse(fecha2>"2019-W26",1,0)) %>%
dplyr::mutate(gasto= dplyr::case_when(gasto=="Gas"~"Gas/Bencina",
gasto=="aspiradora"~"electrodomésticos/mantención casa",
gasto=="Plata fiestas patrias basureros"~"donaciones/regalos",
gasto=="Tina"~"electrodomésticos/mantención casa",
gasto=="Nexium"~"Farmacia",
gasto=="donaciones"~"donaciones/regalos",
gasto=="Regalo chocolates"~"donaciones/regalos",
gasto=="filtro piscina msp"~"electrodomésticos/mantención casa",
gasto=="Chromecast"~"electrodomésticos/mantención casa",
gasto=="Muebles ratan"~"electrodomésticos/mantención casa",
gasto=="Vacuna Influenza"~"Farmacia",
gasto=="Easy"~"electrodomésticos/mantención casa",
gasto=="Sopapo"~"electrodomésticos/mantención casa",
gasto=="filtro agua"~"electrodomésticos/mantención casa",
gasto=="ropa tami"~"donaciones/regalos",
gasto=="yaz"~"Farmacia",
gasto=="Yaz"~"Farmacia",
gasto=="Remedio"~"Farmacia",
gasto=="Entel"~"VTR",
gasto=="Kerosen"~"Gas/Bencina",
gasto=="Parafina"~"Gas/Bencina",
gasto=="Plata basurero"~"donaciones/regalos",
gasto=="Matri Andrés Kogan"~"donaciones/regalos",
gasto=="Wild Protein"~"Comida",
gasto=="Granola Wild Foods"~"Comida",
gasto=="uber"~"Transporte",
gasto=="Uber Reñaca"~"Transporte",
gasto=="filtro piscina mspa"~"electrodomésticos/mantención casa",
gasto=="Limpieza Alfombra"~"electrodomésticos/mantención casa",
gasto=="Aspiradora"~"electrodomésticos/mantención casa",
gasto=="Limpieza alfombras"~"electrodomésticos/mantención casa",
gasto=="Pila estufa"~"electrodomésticos/mantención casa",
gasto=="Reloj"~"electrodomésticos/mantención casa",
gasto=="Arreglo"~"electrodomésticos/mantención casa",
gasto=="Pan Pepperino"~"Comida",
gasto=="Cookidoo"~"Comida",
gasto=="remedios"~"Farmacia",
gasto=="Bendina Reñaca"~"Gas/Bencina",
gasto=="Bencina Reñaca"~"Gas/Bencina",
gasto=="Vacunas Influenza"~"Farmacia",
gasto=="Remedios"~"Farmacia",
gasto=="Plata fiestas patrias basureros"~"donaciones/regalos",
T~gasto)) %>%
dplyr::group_by(gastador, fecha,gasto, .drop=F) %>%
#dplyr::mutate(fecha_simp=week(parse_date(fecha))) %>%
# dplyr::mutate(fecha_simp=tsibble::yearweek(fecha)) %>%#después de diosi. Junio 24, 2019
dplyr::summarise(monto=sum(monto)) %>%
dplyr::mutate(gastador_nombre=plyr::revalue(as.character(gastador), c("0" = "Tami", "1"="Andrés"))) %>%
ggplot2::ggplot(aes(x = fecha, y = monto, color=as.factor(gastador_nombre))) +
#stat_summary(geom = "line", fun.y = median, size = 1, alpha=0.5, aes(color="blue")) +
geom_line(size=1) +
facet_grid(gasto~.)+
#geom_text(aes(x = fech_ing_qrt, y = perc_dup-0.05, label = paste0(n)), vjust = -1,hjust = 0, angle=45, size=3) +
geom_vline(xintercept = as.Date("2019-06-24"),linetype = "dashed") +
labs(y="Gastos (en miles)",x="Semanas y Meses", subtitle="Interlineado, incorporación de la Diosi; Azul= Tami; Rojo= Andrés") +
ggtitle( "Figura 6. Gastos Semanales por Gastador e ítem (media)") +
scale_y_continuous(labels = f <- function(x) paste0(x/1000)) +
scale_color_manual(name = "Gastador", values= c("blue", "red"), labels = c("Tami", "Andrés")) +
scale_x_yearweek(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%m/%y")) +
guides(color = F)+
sjPlot::theme_sjplot2() +
theme(axis.text.x = element_text(vjust = 0.5,angle = 35)) +
theme(
panel.border = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.line = element_line(colour = "black")
)
autoplot(forecast::mstl(Gastos_casa$monto, lambda = "auto",iterate=5000000,start =
lubridate::decimal_date(as.Date("2019-03-03"))))
# scale_x_continuous(breaks = seq(0,400,by=30))
msts <- forecast::msts(Gastos_casa$monto,seasonal.periods = c(7,30.5,365.25),start =
lubridate::decimal_date(as.Date("2019-03-03")))
#tbats <- forecast::tbats(msts,use.trend = FALSE)
#plot(tbats, main="Multiple Season Decomposition")
library(bsts)
library(CausalImpact)
ts_week_covid<-
Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_week=strftime(fecha, format = "%Y-W%V")) %>%
dplyr::mutate(day=as.Date(as.character(lubridate::floor_date(fecha, "day"))))%>%
dplyr::group_by(fecha_week)%>%
dplyr::summarise(gasto_total=sum(monto,na.rm=T)/1000,min_day=min(day))%>%
dplyr::ungroup() %>%
dplyr::mutate(covid=dplyr::case_when(min_day>=as.Date("2020-03-17")~1,TRUE~0))%>%
dplyr::mutate(covid=as.factor(covid))%>%
data.frame()
ts_week_covid$gasto_total_na<-ts_week_covid$gasto_total
post_resp<-ts_week_covid$gasto_total[which(ts_week_covid$covid==1)]
ts_week_covid$gasto_total_na[which(ts_week_covid$covid==1)]<-NA
ts_week_covid$gasto_total[which(ts_week_covid$covid==0)]
## [1] 98.357 4.780 56.784 50.506 64.483 67.248 49.299 35.786 58.503
## [10] 64.083 20.148 73.476 127.004 81.551 69.599 134.446 58.936 26.145
## [19] 129.927 104.989 130.860 81.893 95.697 64.579 303.471 151.106 49.275
## [28] 76.293 33.940 83.071 119.512 20.942 58.055 71.728 44.090 33.740
## [37] 59.264 77.410 60.831 63.376 48.754 235.284 29.604 115.143 72.419
## [46] 5.980 80.063 149.178 69.918 107.601 72.724 63.203 99.681 130.309
## [55] 195.898 112.066
# Model 1
ssd <- list()
# Local trend, weekly-seasonal #https://qastack.mx/stats/209426/predictions-from-bsts-model-in-r-are-failing-completely - PUSE UN GENERALIZED LOCAL TREND
ssd <- AddLocalLevel(ssd, ts_week_covid$gasto_total_na) #AddSemilocalLinearTrend #AddLocalLevel
# Add weekly seasonal
ssd <- AddSeasonal(ssd, ts_week_covid$gasto_total_na,nseasons=5, season.duration = 52) #weeks OJO, ESTOS NO SON WEEKS VERDADEROS. PORQUE TENGO MAS DE EUN AÑO
ssd <- AddSeasonal(ssd, ts_week_covid$gasto_total_na, nseasons = 12, season.duration =4) #years
# For example, to add a day-of-week component to data with daily granularity, use model.args = list(nseasons = 7, season.duration = 1). To add a day-of-week component to data with hourly granularity, set model.args = list(nseasons = 7, season.duration = 24).
model1d1 <- bsts(ts_week_covid$gasto_total_na,
state.specification = ssd, #A list with elements created by AddLocalLinearTrend, AddSeasonal, and similar functions for adding components of state. See the help page for state.specification.
family ="student", #A Bayesian Analysis of Time-Series Event Count Data. POISSON NO SE PUEDE OCUPAR
niter = 20000,
#burn = 200, #http://finzi.psych.upenn.edu/library/bsts/html/SuggestBurn.html Suggest the size of an MCMC burn in sample as a proportion of the total run.
seed= 2125)
## =-=-=-=-= Iteration 0 Mon Jan 01 01:41:50 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 2000 Mon Jan 01 01:41:56 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 4000 Mon Jan 01 01:42:03 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 6000 Mon Jan 01 01:42:09 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 8000 Mon Jan 01 01:42:16 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 10000 Mon Jan 01 01:42:23 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 12000 Mon Jan 01 01:42:29 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 14000 Mon Jan 01 01:42:36 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 16000 Mon Jan 01 01:42:43 2024
## =-=-=-=-=
## =-=-=-=-= Iteration 18000 Mon Jan 01 01:42:49 2024
## =-=-=-=-=
#,
# dynamic.regression=T)
#plot(model1d1, main = "Model 1")
#plot(model1d1, "components")
impact2d1 <- CausalImpact(bsts.model = model1d1,
post.period.response = post_resp)
plot(impact2d1)+
xlab("Date")+
ylab("Monto Semanal (En miles)")
burn1d1 <- SuggestBurn(0.1, model1d1)
corpus <- Corpus(VectorSource(Gastos_casa$obs)) # formato de texto
d <- tm_map(corpus, tolower)
d <- tm_map(d, stripWhitespace)
d <- tm_map(d, removePunctuation)
d <- tm_map(d, removeNumbers)
d <- tm_map(d, removeWords, stopwords("spanish"))
d <- tm_map(d, removeWords, "menos")
tdm <- TermDocumentMatrix(d)
m <- as.matrix(tdm) #lo vuelve una matriz
v <- sort(rowSums(m),decreasing=TRUE) #lo ordena y suma
df <- data.frame(word = names(v),freq=v) # lo nombra y le da formato de data.frame
#findFreqTerms(tdm)
#require(devtools)
#install_github("lchiffon/wordcloud2")
#wordcloud2::wordcloud2(v, size=1.2)
wordcloud(words = df$word, freq = df$freq,
max.words=100, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Dark2"), main="Figura 7. Nube de Palabras, Observaciones")
fit_month_gasto <- Gastos_casa %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_month=strftime(fecha, format = "%Y-%m")) %>%
dplyr::mutate(day=as.Date(as.character(lubridate::floor_date(fecha, "day"))))%>%
dplyr::mutate(gasto2= dplyr::case_when(gasto=="Gas"~"Gas/Bencina",
gasto=="aspiradora"~"electrodomésticos/mantención casa",
gasto=="Plata fiestas patrias basureros"~"donaciones/regalos",
gasto=="Tina"~"Electrodomésticos/ Mantención casa",
gasto=="Nexium"~"Farmacia",
gasto=="donaciones"~"donaciones/regalos",
gasto=="Regalo chocolates"~"donaciones/regalos",
gasto=="filtro piscina msp"~"Electrodomésticos/ Mantención casa",
gasto=="Chromecast"~"Electrodomésticos/ Mantención casa",
gasto=="Muebles ratan"~"Electrodomésticos/ Mantención casa",
gasto=="Vacuna Influenza"~"Farmacia",
gasto=="Easy"~"Electrodomésticos/ Mantención casa",
gasto=="Sopapo"~"Electrodomésticos/ Mantención casa",
gasto=="filtro agua"~"Electrodomésticos/ Mantención casa",
gasto=="ropa tami"~"donaciones/regalos",
gasto=="yaz"~"Farmacia",
gasto=="Yaz"~"Farmacia",
gasto=="Remedio"~"Farmacia",
gasto=="Entel"~"VTR",
gasto=="Kerosen"~"Gas/Bencina",
gasto=="Parafina"~"Gas/Bencina",
gasto=="Plata basurero"~"donaciones/regalos",
gasto=="Matri Andrés Kogan"~"donaciones/regalos",
gasto=="Wild Protein"~"Comida",
gasto=="Granola Wild Foods"~"Comida",
gasto=="uber"~"Otros",
gasto=="Uber Reñaca"~"Otros",
gasto=="filtro piscina mspa"~"Electrodomésticos/ Mantención casa",
gasto=="Limpieza Alfombra"~"Electrodomésticos/ Mantención casa",
gasto=="Aspiradora"~"Electrodomésticos/ Mantención casa",
gasto=="Limpieza alfombras"~"Electrodomésticos/ Mantención casa",
gasto=="Pila estufa"~"Electrodomésticos/ Mantención casa",
gasto=="Reloj"~"Electrodomésticos/ Mantención casa",
gasto=="Arreglo"~"Electrodomésticos/ Mantención casa",
gasto=="Pan Pepperino"~"Comida",
gasto=="Cookidoo"~"Comida",
gasto=="remedios"~"Farmacia",
gasto=="Bendina Reñaca"~"Gas/Bencina",
gasto=="Bencina Reñaca"~"Gas/Bencina",
gasto=="Vacunas Influenza"~"Farmacia",
gasto=="Remedios"~"Farmacia",
gasto=="Plata fiestas patrias basureros"~"donaciones/regalos",
T~gasto)) %>%
dplyr::mutate(fecha_month=factor(fecha_month, levels=format(seq(from = as.Date("2019-03-03"), to = as.Date(substr(Sys.time(),1,10)), by = "1 month"),"%Y-%m")))%>%
dplyr::mutate(gasto2=factor(gasto2, levels=c("Agua", "Comida", "Comunicaciones","Electricidad", "Enceres", "Farmacia", "Gas/Bencina", "Diosi", "donaciones/regalos", "Electrodomésticos/ Mantención casa", "VTR", "Netflix", "Otros")))%>%
dplyr::group_by(fecha_month, gasto2, .drop=F)%>%
dplyr::summarise(gasto_total=sum(monto, na.rm = T)/1000)%>%
data.frame() %>% na.omit()
fit_month_gasto_23<-
fit_month_gasto %>%
#dplyr::filter()
dplyr::filter(grepl("2023",fecha_month)) %>%
#sacar el ultimo mes
dplyr::filter(as.character(format(as.Date(substr(Sys.time(),1,10)),"%Y-%m"))!=fecha_month) %>%
dplyr::group_by(gasto2) %>%
dplyr::summarise(gasto_prom=mean(gasto_total, na.rm=T)) %>%
data.frame()%>% ungroup()
fit_month_gasto_22<-
fit_month_gasto %>%
#dplyr::filter()
dplyr::filter(grepl("2022",fecha_month)) %>%
#sacar el ultimo mes
dplyr::filter(as.character(format(as.Date(substr(Sys.time(),1,10)),"%Y-%m"))!=fecha_month) %>%
dplyr::group_by(gasto2) %>%
dplyr::summarise(gasto_prom=mean(gasto_total, na.rm=T)) %>%
data.frame()%>% ungroup()
fit_month_gasto_21<-
fit_month_gasto %>%
#dplyr::filter()
dplyr::filter(grepl("2021|2022",fecha_month)) %>%
#sacar el ultimo mes
dplyr::filter(as.character(format(as.Date(substr(Sys.time(),1,10)),"%Y-%m"))!=fecha_month) %>%
dplyr::group_by(gasto2) %>%
dplyr::summarise(gasto_prom=mean(gasto_total, na.rm=T)) %>%
data.frame()%>% ungroup()
fit_month_gasto_20<-
fit_month_gasto %>%
#dplyr::filter()
dplyr::filter(grepl("202",fecha_month)) %>%
#sacar el ultimo mes
dplyr::filter(as.character(format(as.Date(substr(Sys.time(),1,10)),"%Y-%m"))!=fecha_month) %>%
dplyr::group_by(gasto2) %>%
dplyr::summarise(gasto_prom=mean(gasto_total, na.rm=T)) %>%
data.frame() %>% ungroup()
fit_month_gasto_23 %>%
dplyr::right_join(fit_month_gasto_22,by="gasto2") %>%
dplyr::right_join(fit_month_gasto_21,by="gasto2") %>%
dplyr::right_join(fit_month_gasto_20,by="gasto2") %>%
janitor::adorn_totals() %>%
#dplyr::select(-3)%>%
knitr::kable(format = "markdown", size=12, col.names= c("Item","2023","2022","2021","2020"))
| Item | 2023 | 2022 | 2021 | 2020 |
|---|---|---|---|---|
| Agua | 5.195333 | 5.410333 | 5.629750 | 6.5981458 |
| Comida | 366.009167 | 310.278417 | 314.087500 | 346.7794583 |
| Comunicaciones | 0.000000 | 0.000000 | 0.000000 | 0.0000000 |
| Electricidad | 38.104750 | 47.072333 | 38.297667 | 33.8261667 |
| Enceres | 18.259750 | 20.086417 | 17.443792 | 23.0398333 |
| Farmacia | 4.733250 | 1.831667 | 7.913875 | 8.6494375 |
| Gas/Bencina | 35.219333 | 44.325000 | 28.954333 | 27.5965833 |
| Diosi | 55.804250 | 31.180667 | 41.934250 | 44.1985208 |
| donaciones/regalos | 0.000000 | 0.000000 | 7.170083 | 5.7233125 |
| Electrodomésticos/ Mantención casa | 0.000000 | 3.944000 | 30.269500 | 17.2805833 |
| VTR | 12.829167 | 25.156667 | 22.121792 | 19.0466250 |
| Netflix | 4.555500 | 7.151583 | 7.090167 | 6.7457708 |
| Otros | 0.000000 | 3.151083 | 1.575542 | 0.7877708 |
| Total | 540.710500 | 499.588167 | 522.488250 | 540.2722083 |
## Joining with `by = join_by(word)`
Saqué la UF proyectada
#options(max.print=5000)
uf18 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2018.htm")%>% rvest::html_nodes("table")
uf19 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2019.htm")%>% rvest::html_nodes("table")
uf20 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2020.htm")%>% rvest::html_nodes("table")
uf21 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2021.htm")%>% rvest::html_nodes("table")
uf22 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2022.htm")%>% rvest::html_nodes("table")
tryCatch(uf23 <-rvest::read_html("https://www.sii.cl/valores_y_fechas/uf/uf2023.htm")%>% rvest::html_nodes("table"),
error = function(c) {
uf23b <<- cbind.data.frame(Día=NA, variable=NA, value=NA)
}
)
tryCatch(uf23 <-uf23[[length(uf23)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1),
error = function(c) {
uf23 <<- cbind.data.frame(Día=NA, variable=NA, value=NA)
}
)
uf_serie<-
bind_rows(
cbind.data.frame(anio= 2018, uf18[[length(uf18)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1)),
cbind.data.frame(anio= 2019, uf19[[length(uf19)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1)),
cbind.data.frame(anio= 2020, uf20[[length(uf20)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1)),
cbind.data.frame(anio= 2021, uf21[[length(uf21)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1)),
cbind.data.frame(anio= 2022, uf22[[length(uf22)]] %>% rvest::html_table() %>% data.frame() %>% reshape2::melt(id.vars=1)),
cbind.data.frame(anio= 2023, uf23)
)
uf_serie_corrected<-
uf_serie %>%
dplyr::mutate(month=plyr::revalue(tolower(.[[3]]),c("ene" = 1, "feb"=2, "mar"=3, "abr"=4, "may"=5, "jun"=6, "jul"=7, "ago"=8, "sep"=9, "oct"=10, "nov"=11, "dic"=12))) %>%
dplyr::mutate(value=stringr::str_trim(value), value= sub("\\.","",value),value= as.numeric(sub("\\,",".",value))) %>%
dplyr::mutate(date=paste0(sprintf("%02d", .[[2]])," ",sprintf("%02d",as.numeric(month)),", ",.[[1]]), date3=lubridate::parse_date_time(date,c("%d %m, %Y"),exact=T),date2=date3) %>%
na.omit()#%>% dplyr::filter(is.na(date3))
## Warning: There was 1 warning in `dplyr::mutate()`.
## i In argument: `date3 = lubridate::parse_date_time(date, c("%d %m, %Y"), exact
## = T)`.
## Caused by warning:
## ! 41 failed to parse.
#Day of the month as decimal number (1–31), with a leading space for a single-digit number.
#Abbreviated month name in the current locale on this platform. (Also matches full name on input: in some locales there are no abbreviations of names.)
warning(paste0("number of observations:",nrow(uf_serie_corrected),", min uf: ",min(uf_serie_corrected$value),", min date: ",min(uf_serie_corrected $date3 )))
## Warning: number of observations:2191, min uf: 26799.01, min date: 2018-01-01
#
# uf_proyectado <- readxl::read_excel("uf_proyectado.xlsx") %>% dplyr::arrange(Período) %>%
# dplyr::mutate(Período= as.Date(lubridate::parse_date_time(Período, c("%Y-%m-%d"),exact=T)))
ts_uf_proy<-
ts(data = uf_serie_corrected$value,
start = as.numeric(as.Date("2018-01-01")),
end = as.numeric(as.Date(uf_serie_corrected$date3[length(uf_serie_corrected$date3)])), frequency = 1,
deltat = 1, ts.eps = getOption("ts.eps"))
fit_tbats <- forecast::tbats(ts_uf_proy)
fr_fit_tbats<-forecast::forecast(fit_tbats, h=298)
La proyección de la UF a 298 días más 2023-12-31 00:04:58 sería de: 37.564 pesos// Percentil 95% más alto proyectado: 40.778,21
Ahora con un modelo ARIMA automático
arima_optimal_uf = forecast::auto.arima(ts_uf_proy)
autoplotly::autoplotly(forecast::forecast(arima_optimal_uf, h=298), ts.colour = "darkred",
predict.colour = "blue", predict.linetype = "dashed")%>%
plotly::layout(showlegend = F,
yaxis = list(title = "Gastos"),
xaxis = list(
title="Fecha",
ticktext = as.list(seq(from = as.Date("2018-01-01"),
to = as.Date("2018-01-01")+length(fit_tbats$fitted.values)+298, by = 90)),
tickvals = as.list(seq(from = as.numeric(as.Date("2018-01-01")),
to = as.numeric(as.Date("2018-01-01"))+length(fit_tbats$fitted.values)+298, by = 90)),
tickmode = "array",
tickangle = 90
))
fr_fit_tbats_uf<-forecast::forecast(arima_optimal_uf, h=298)
dplyr::group_by(reshape2::melt(data.frame(fr_fit_tbats)),variable) %>% dplyr::summarise(max=max(value)) %>%
dplyr::right_join(dplyr::group_by(reshape2::melt(data.frame(fr_fit_tbats_uf)),variable) %>% dplyr::summarise(max=max(value)),by="variable") %>%
dplyr::mutate(variable=factor(variable,levels=c("Lo.95","Lo.80","Point.Forecast","Hi.80","Hi.95"))) %>%
dplyr::arrange(variable) %>%
knitr::kable(format="markdown", caption="Tabla. Estimación UF (de aquí a 298 días) según cálculos de gastos mensuales",
col.names= c("Item","UF Proyectada (TBATS)","UF Proyectada (ARIMA)"))
## No id variables; using all as measure variables
## No id variables; using all as measure variables
| Item | UF Proyectada (TBATS) | UF Proyectada (ARIMA) |
|---|---|---|
| Lo.95 | 36833.92 | 36828.51 |
| Lo.80 | 36883.04 | 36886.39 |
| Point.Forecast | 37564.03 | 39253.82 |
| Hi.80 | 39365.36 | 43947.75 |
| Hi.95 | 40353.63 | 46432.57 |
Lo haré en base a 2 cálculos: el gasto semanal y el gasto mensual en base a mis gastos desde marzo de 2019. La primera proyección la hice añadiendo el precio del arriendo mensual y partiendo en 2 (porque es con yo y Tami). No se incluye el último mes.
Gastos_casa_nvo <- readr::read_csv(as.character(path_sec),
col_names = c("Tiempo", "gasto", "fecha", "obs", "monto", "gastador",
"link"),skip=1) %>%
dplyr::mutate(fecha= lubridate::parse_date_time(fecha, c("%d/%m/%Y"),exact=T)) %>%
dplyr::mutate(fecha_month=strftime(fecha, format = "%Y-%m")) %>%
dplyr::mutate(day=as.Date(as.character(lubridate::floor_date(fecha, "day"))))
Gastos_casa_m <-
Gastos_casa_nvo %>% dplyr::group_by(fecha_month)%>%
dplyr::summarise(gasto_total=(sum(monto)+500000)/1000,fecha=first(fecha))%>%
data.frame()
uf_serie_corrected_m <-
uf_serie_corrected %>% dplyr::mutate(ano_m=paste0(anio,"-",sprintf("%02d",as.numeric(month)))) %>% dplyr::group_by(ano_m)%>%
dplyr::summarise(uf=(mean(value))/1000,fecha=first(date3))%>%
data.frame() %>%
dplyr::filter(fecha>="2019-02-28")
#Error: Error in standardise_path(file) : object 'enlace_gastos' not found
ts_uf_serie_corrected_m<-
ts(data = uf_serie_corrected_m$uf[-length(uf_serie_corrected_m$uf)],
start = 1,
end = nrow(uf_serie_corrected_m),
frequency = 1,
deltat = 1, ts.eps = getOption("ts.eps"))
ts_gastos_casa_m<-
ts(data = Gastos_casa_m$gasto_total[-length(Gastos_casa_m$gasto_total)],
start = 1,
end = nrow(Gastos_casa_m),
frequency = 1,
deltat = 1, ts.eps = getOption("ts.eps"))
fit_tbats_m <- forecast::tbats(ts_gastos_casa_m)
seq_dates<-format(seq(as.Date("2019/03/01"), by = "month", length = dim(Gastos_casa_m)[1]+12), "%m\n'%y")
autplo2t<-
autoplotly::autoplotly(forecast::forecast(fit_tbats_m, h=12), ts.colour = "darkred",
predict.colour = "blue", predict.linetype = "dashed")%>%
plotly::layout(showlegend = F,
yaxis = list(title = "Gastos (en miles)"),
xaxis = list(
title="Fecha",
ticktext = as.list(seq_dates[seq(from = 1, to = (dim(Gastos_casa_m)[1]+12), by = 3)]),
tickvals = as.list(seq(from = 1, to = (dim(Gastos_casa_m)[1]+12), by = 3)),
tickmode = "array"#"array"
))
autplo2t
Ahora asumiendo un modelo ARIMA, e incluimos como regresor al precio de la UF.
paste0("Optimo pero sin regresor")
## [1] "Optimo pero sin regresor"
arima_optimal = forecast::auto.arima(ts_gastos_casa_m)
arima_optimal
## Series: ts_gastos_casa_m
## ARIMA(1,0,0) with non-zero mean
##
## Coefficients:
## ar1 mean
## 0.2992 1009.6771
## s.e. 0.1304 29.7478
##
## sigma^2 = 26319: log likelihood = -376.49
## AIC=758.98 AICc=759.43 BIC=765.16
paste0("Optimo pero con regresor")
## [1] "Optimo pero con regresor"
arima_optimal2 = forecast::auto.arima(ts_gastos_casa_m, xreg=as.numeric(ts_uf_serie_corrected_m[1:(length(Gastos_casa_m$gasto_total))]))
arima_optimal2
## Series: ts_gastos_casa_m
## Regression with ARIMA(1,0,0) errors
##
## Coefficients:
## ar1 intercept xreg
## 0.2759 522.2681 15.7430
## s.e. 0.1306 280.2469 8.9902
##
## sigma^2 = 25445: log likelihood = -374.98
## AIC=757.96 AICc=758.72 BIC=766.2
forecast_uf<-
cbind.data.frame(fecha=as.Date(seq(as.numeric(as.Date(uf_serie_corrected$date3[length(uf_serie_corrected$date3)])),(as.numeric(as.Date(uf_serie_corrected$date3[length(uf_serie_corrected$date3)]))+299),by=1), origin = "1970-01-01"),forecast::forecast(fit_tbats, h=300)) %>%
dplyr::mutate(ano_m=stringr::str_extract(fecha,".{7}")) %>%
dplyr::group_by(ano_m)%>%
dplyr::summarise(uf=(mean(`Hi 95`,na.rm=T))/1000,fecha=first(fecha))%>%
data.frame()
autplo2t2<-
autoplotly::autoplotly(forecast::forecast(arima_optimal2,xreg=c(forecast_uf$uf[1],forecast_uf$uf), h=12), ts.colour = "darkred",
predict.colour = "blue", predict.linetype = "dashed")%>%
plotly::layout(showlegend = F,
yaxis = list(title = "Gastos (en miles)"),
xaxis = list(
title="Fecha",
ticktext = as.list(seq_dates[seq(from = 1, to = (dim(Gastos_casa_m)[1]+12), by = 3)]),
tickvals = as.list(seq(from = 1, to = (dim(Gastos_casa_m)[1]+12), by = 3)),
tickmode = "array"#"array"
))
autplo2t2
fr_fit_tbats_m<-forecast::forecast(fit_tbats_m, h=12)
fr_fit_tbats_m2<-forecast::forecast(arima_optimal, h=12)
fr_fit_tbats_m3<-forecast::forecast(arima_optimal2, h=12,xreg=c(forecast_uf$uf[1],forecast_uf$uf))
dplyr::right_join(dplyr::group_by(reshape2::melt(data.frame(fr_fit_tbats_m3)),variable) %>% dplyr::summarise(max=max(value)), dplyr::group_by(reshape2::melt(data.frame(fr_fit_tbats_m2)),variable) %>% dplyr::summarise(max=max(value)),by="variable") %>%
dplyr::right_join(dplyr::group_by(reshape2::melt(data.frame(fr_fit_tbats_m)),variable) %>% dplyr::summarise(max=max(value)),by="variable") %>%
dplyr::mutate(variable=factor(variable,levels=c("Lo.95","Lo.80","Point.Forecast","Hi.80","Hi.95"))) %>%
dplyr::arrange(variable) %>%
knitr::kable(format="markdown", caption="Estimación en miles de la plata a gastar en el futuro (de aquí a 12 meses) según cálculos de gastos mensuales",
col.names= c("Item","Modelo ARIMA con regresor (UF)","Modelo ARIMA sin regresor","Modelo TBATS"))
## No id variables; using all as measure variables
## No id variables; using all as measure variables
## No id variables; using all as measure variables
| Item | Modelo ARIMA con regresor (UF) | Modelo ARIMA sin regresor | Modelo TBATS |
|---|---|---|---|
| Lo.95 | 830.9187 | 676.4414 | 708.8746 |
| Lo.80 | 943.5040 | 791.7859 | 790.2537 |
| Point.Forecast | 1156.1826 | 1009.6770 | 970.3264 |
| Hi.80 | 1368.8612 | 1227.5680 | 1252.4208 |
| Hi.95 | 1481.4464 | 1342.9125 | 1433.5615 |
path_sec2<- paste0("https://docs.google.com/spreadsheets/d/",Sys.getenv("SUPERSECRET"),"/export?format=csv&id=",Sys.getenv("SUPERSECRET"),"&gid=847461368")
Gastos_casa_mensual_2022 <- readr::read_csv(as.character(path_sec2),
#col_names = c("Tiempo", "gasto", "fecha", "obs", "monto", "gastador","link"),
skip=0)
## Rows: 66 Columns: 4
## -- Column specification --------------------------------------------------------
## Delimiter: ","
## chr (1): mes_ano
## dbl (3): n, Tami, Andrés
##
## i Use `spec()` to retrieve the full column specification for this data.
## i Specify the column types or set `show_col_types = FALSE` to quiet this message.
head(Gastos_casa_mensual_2022,5) %>%
knitr::kable("markdown",caption="Resumen mensual, primeras 5 observaciones")
| n | mes_ano | Tami | Andrés |
|---|---|---|---|
| 1 | marzo_2019 | 175533 | 68268 |
| 2 | abril_2019 | 152640 | 55031 |
| 3 | mayo_2019 | 152985 | 192219 |
| 4 | junio_2019 | 291067 | 84961 |
| 5 | julio_2019 | 241389 | 205893 |
(
Gastos_casa_mensual_2022 %>%
reshape2::melt(id.var=c("n","mes_ano")) %>%
dplyr::mutate(gastador=as.factor(variable)) %>%
dplyr::select(-variable) %>%
ggplot2::ggplot(aes(x = n, y = value, color=gastador)) +
scale_color_manual(name="Gastador", values=c("red", "blue"))+
geom_line(size=1) +
#geom_vline(xintercept = as.Date("2019-06-24"),linetype = "dashed") +
labs(y="Gastos (en miles)",x="Meses", subtitle="Azul= Tami; Rojo= Andrés") +
ggtitle( "Gastos Mensuales (total manual)") +
scale_y_continuous(labels = f <- function(x) paste0(x/1000)) +
# scale_color_manual(name = "Gastador", values= c("blue", "red"), labels = c("Tami", "Andrés")) +
# scale_x_yearweek(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%m/%y")) +
# guides(color = F)+
sjPlot::theme_sjplot2() +
theme(axis.text.x = element_text(vjust = 0.5,angle = 35)) +
theme(
panel.border = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.line = element_line(colour = "black")
)
) %>% ggplotly()
Sys.getenv("R_LIBS_USER")
## [1] "D:\\a\\_temp\\Library"
sessionInfo()
## R version 4.1.2 (2021-11-01)
## Platform: x86_64-w64-mingw32/x64 (64-bit)
## Running under: Windows Server x64 (build 20348)
##
## Matrix products: default
##
## locale:
## [1] LC_COLLATE=Spanish_Chile.1252 LC_CTYPE=Spanish_Chile.1252
## [3] LC_MONETARY=Spanish_Chile.1252 LC_NUMERIC=C
## [5] LC_TIME=Spanish_Chile.1252
##
## attached base packages:
## [1] grid stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] CausalImpact_1.3.0 bsts_0.9.9 BoomSpikeSlab_1.2.6
## [4] Boom_0.9.14 scales_1.3.0 ggiraph_0.8.8
## [7] tidytext_0.4.1 DT_0.31 autoplotly_0.1.4
## [10] rvest_1.0.3 plotly_4.10.3 xts_0.13.1
## [13] forecast_8.21.1 wordcloud_2.6 RColorBrewer_1.1-3
## [16] SnowballC_0.7.1 tm_0.7-11 NLP_0.2-1
## [19] tsibble_1.1.3 lubridate_1.9.3 forcats_1.0.0
## [22] dplyr_1.1.4 purrr_1.0.1 tidyr_1.3.0
## [25] tibble_3.2.1 ggplot2_3.4.4 tidyverse_2.0.0
## [28] sjPlot_2.8.15 lattice_0.20-45 gridExtra_2.3
## [31] plotrix_3.8-4 sparklyr_1.8.4 httr_1.4.7
## [34] readxl_1.4.3 zoo_1.8-12 stringr_1.5.1
## [37] stringi_1.8.3 data.table_1.14.10 reshape2_1.4.4
## [40] fUnitRoots_4021.80 plyr_1.8.9 readr_2.1.4
##
## loaded via a namespace (and not attached):
## [1] uuid_1.1-0 backports_1.4.1 systemfonts_1.0.4
## [4] selectr_0.4-2 lazyeval_0.2.2 splines_4.1.2
## [7] crosstalk_1.2.0 digest_0.6.31 htmltools_0.5.5
## [10] fansi_1.0.4 ggfortify_0.4.16 magrittr_2.0.3
## [13] tzdb_0.4.0 modelr_0.1.11 vroom_1.6.5
## [16] askpass_1.1 timechange_0.2.0 anytime_0.3.9
## [19] tseries_0.10-55 colorspace_2.1-0 xfun_0.39
## [22] crayon_1.5.2 jsonlite_1.8.4 lme4_1.1-35.1
## [25] glue_1.6.2 gtable_0.3.4 emmeans_1.9.0
## [28] sjstats_0.18.2 sjmisc_2.8.9 car_3.1-2
## [31] quantmod_0.4.25 abind_1.4-5 mvtnorm_1.2-4
## [34] DBI_1.2.0 ggeffects_1.3.4 Rcpp_1.0.10
## [37] viridisLite_0.4.2 xtable_1.8-4 performance_0.10.8
## [40] bit_4.0.5 htmlwidgets_1.6.2 timeSeries_4032.108
## [43] gplots_3.1.3 ellipsis_0.3.2 spatial_7.3-14
## [46] pkgconfig_2.0.3 farver_2.1.1 nnet_7.3-16
## [49] sass_0.4.5 dbplyr_2.4.0 janitor_2.2.0
## [52] utf8_1.2.3 tidyselect_1.2.0 labeling_0.4.3
## [55] rlang_1.1.2 munsell_0.5.0 cellranger_1.1.0
## [58] tools_4.1.2 cachem_1.0.7 cli_3.6.1
## [61] generics_0.1.3 sjlabelled_1.2.0 broom_1.0.5
## [64] evaluate_0.20 fastmap_1.1.1 yaml_2.3.7
## [67] knitr_1.45 bit64_4.0.5 caTools_1.18.2
## [70] nlme_3.1-153 slam_0.1-50 xml2_1.3.3
## [73] tokenizers_0.3.0 compiler_4.1.2 rstudioapi_0.14
## [76] curl_5.2.0 bslib_0.4.2 highr_0.10
## [79] fBasics_4032.96 Matrix_1.6-4 its.analysis_1.6.0
## [82] nloptr_2.0.3 urca_1.3-3 vctrs_0.6.5
## [85] pillar_1.9.0 lifecycle_1.0.3 lmtest_0.9-40
## [88] jquerylib_0.1.4 estimability_1.4.1 bitops_1.0-7
## [91] insight_0.19.7 R6_2.5.1 KernSmooth_2.23-20
## [94] janeaustenr_1.0.0 codetools_0.2-18 assertthat_0.2.1
## [97] boot_1.3-28 MASS_7.3-54 gtools_3.9.5
## [100] openssl_2.0.6 withr_2.5.2 fracdiff_1.5-2
## [103] bayestestR_0.13.1 parallel_4.1.2 hms_1.1.3
## [106] quadprog_1.5-8 timeDate_4032.109 minqa_1.2.6
## [109] snakecase_0.11.1 rmarkdown_2.25 carData_3.0-5
## [112] TTR_0.24.4
#save.image("__analisis.RData")
sesion_info <- devtools::session_info()
dplyr::select(
tibble::as_tibble(sesion_info$packages),
c(package, loadedversion, source)
) %>%
DT::datatable(filter = 'top', colnames = c('Row number' =1,'Variable' = 2, 'Percentage'= 3),
caption = htmltools::tags$caption(
style = 'caption-side: top; text-align: left;',
'', htmltools::em('Packages')),
options=list(
initComplete = htmlwidgets::JS(
"function(settings, json) {",
"$(this.api().tables().body()).css({
'font-family': 'Helvetica Neue',
'font-size': '50%',
'code-inline-font-size': '15%',
'white-space': 'nowrap',
'line-height': '0.75em',
'min-height': '0.5em'
});",#;
"}")))